Open
Conversation
contains a dictionary to map form vim filetype identifiers, to the "scope" names Sublime uses in its Syntax files. This was generated half-automatically, and scope names cover those available in Sublime and the CMake plugin. The mapping from Sublime's "scope" names to package names if created the first time it is requested. both mappings should allow changes by the user (not implemented). Signed-off-by: Norbert Lange <nolange79@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This should ultimately fix #2.
I would like some feedback on the current implementation.
Vim Filetypes are mapped to the internal sublime scope names
This seems to make more sense to me that depending on package names and filenames in packages.
I have some crude python scripts to pry the scope-names sublime uses and used some grep'ping to get an ideas about vims filetype tags.
Matching was again done half-automatically.
a map of internal sublime scope names is built the first time it is used
This is the main issue, I dont know how to do this cleanly.
plugin_loaded, but I don't know python and its package/class scope good enough.allow user customzations / extensions
Not done yet, but a map in the settings would allow to:
The later will alwas have a
/delimiter, so a single map would suffice.Other stuff
I realized that loading the plugin will not apply in other open files (they dont have an active Window/"View" I guess)