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
diff --git a/C#/C#.sublime-syntax b/C#/C#.sublime-syntax | |
index e1d97064..fbfc2941 100644 | |
--- a/C#/C#.sublime-syntax | |
+++ b/C#/C#.sublime-syntax | |
@@ -120,11 +120,11 @@ contexts: | |
2: string.unquoted.cs | |
- match: '\b(region)\b\s*(.*)' | |
captures: | |
- 1: keyword.other.preprocessor.cs | |
+ 1: keyword.other.preprocessor.begin.cs |
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
Show hidden characters
[ | |
{"button": "button2", "modifiers": ["alt"],"press_command": "click_anywhere"} | |
] |
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
{ | |
"name": "Sunburst", | |
"author": "Stanley Rost", | |
"variables": | |
{ | |
"black": "#000000", | |
"black2": "#242424", | |
"black3": "#420e09", | |
"black4": "#003000", | |
"black5": "#0e2231", |
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
{ | |
"name": "Sunburst", | |
"author": "Stanley Rost", | |
"variables": | |
{ | |
"black": "#000000", | |
"black2": "#242424", | |
"black3": "#420e09", | |
"black4": "#003000", | |
"black5": "#0e2231", |
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
import sublime | |
import sublime_plugin | |
import os | |
def lookup_symbol(window, symbol): | |
if len(symbol.strip()) < 3: | |
return [] | |
index_locations = window.lookup_symbol_in_index(symbol) | |
open_file_locations = window.lookup_symbol_in_open_files(symbol) |