-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add syntax exclusions. Also adds prefrence menu and settings file.
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
// An array of syntaxes to exclude from checking. Can be partial string, like "css" | ||
// "exclude_scopes_from_complete_triggers": [ | ||
// "css", | ||
// "scss" | ||
// ] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[ | ||
{ | ||
"caption": "Preferences", | ||
"mnemonic": "n", | ||
"id": "preferences", | ||
"children": [ | ||
{ | ||
"caption": "Package Settings", | ||
"mnemonic": "P", | ||
"id": "package-settings", | ||
"children": [ | ||
{ | ||
"caption": "All Autocomplete", | ||
"children": [ | ||
{ | ||
"command": "open_file", | ||
"args": { | ||
"file": "${packages}/SublimeAllAutocomplete/All Autocomplete.sublime-settings" | ||
}, | ||
"caption": "Settings – Default" | ||
}, | ||
{ | ||
"command": "open_file", | ||
"args": { | ||
"file": "${packages}/User/All Autocomplete.sublime-settings" | ||
}, | ||
"caption": "Settings – User" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] |
This file contains 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