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
Context Operands | |
auto_complete_visible: Returns true if the autocomplete list is visible. | |
has_next_field: Returns true if there’s a next snippet field available. | |
has_prev_field: Returns true if there’s a previous snippet field available. | |
num_selections: Returns the number of selections. | |
overlay_visible: Returns true if any overlay is visible. | |
panel_visible: Returns true if any panel is visible. | |
following_text: Restricts the test to the text following the caret. | |
preceding_text: Restricts the test to the text preceding the caret. |
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
A self made Sublime Text 3 Commands list. | |
build | |
run_macro_file | |
insert_snippet | |
insert | |
move | |
move_to | |
new_window | |
new_file |
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
List of all Sublime Text 3 Environment Variables to be used by Snippet Makers / Plugin Developers | |
$SELECTION The text that was selected when the snippet was triggered. | |
$TM_CURRENT_LINE Content of the line the cursor was in when the snippet was triggered. | |
$TM_CURRENT_WORD Current word under the cursor when the snippet was triggered. | |
$TM_FILENAME File name of the file being edited including extension. | |
$TM_FILEPATH File path to the file being edited. | |
$TM_FULLNAME User’s user name. | |
$TM_LINE_INDEX Column the snippet is being inserted at, 0 based. | |
$TM_LINE_NUMBER Row the snippet is being inserted at, 1 based. |
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
A list of Sublime Text 3 scopes to be used for Snippets Makers / Plugin Developers. | |
Main Symbol Scopes: entity.name.function, entity.name.type, meta.toc-list | |
ActionScript: source.actionscript.2 | |
AppleScript: source.applescript | |
ASP: source.asp | |
Batch FIle: source.dosbatch | |
BibTex: source.bibtex | |
C#: source.cs |