PackageDev
PackageDev copied to clipboard
Tools to ease the creation of snippets, syntax definitions, etc. for Sublime Text.
We don't currently provide completions from extended syntax definitions, neither variable nor context.
With ST4, we can implement our on_navigate callback as a command and thus also allow people to bind a key to this command. To make this work properly, we would...
There seems to be a few commands that are missing from the `builtin_commands_meta_data.yaml` file. For example, I was unable to find any reference for the `drag_select` command. Also some of...
Sublime Merge uses the same core as Sublime Text, which means basically all resource file types are shared. I haven't spent too much about how support for Merge could look...
As defined in https://www.sublimetext.com/docs/3/themes.html#elements, each class supports only a set of attributes and propeties, and not all of them. PackageDev provides all properties and attributes regardless of whether the class...
Is there a way to get this thing for named contexts in `.sublime-syntax`? Ideally, I'd like the hover to be available (and to include) both definitions and uses... maybe even...
With ST4000+ switching to a multi-runtime plugin environment, our method of fetching all plugin-defined commands is currently only able to fetch those of the same runtime. Since the other runtime...
None of the event listeners were tested with multiple views into the same file. Also, none of the ViewEventListeners implement `applies_to_primary_view_only`, which returns `True` by default. This is low priority...
In a `sublime-syntax` file, if the regex is single quoted, and contains a set, and that set contains an escaped single quote, if a character that is normally a valid...
Currently, we just ignore dicts when offering value completions, because 1. we don't know how to handle them in most situations, especially when they occur as secondary values inside a...