-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use sublime_lib.NamedSettingsDict to handle settings - apart from `trailing_spaces_highlight_color` which has special handling, get all options directly from settings so that they are always up-to-date with user preferences. Previously settings were only read on init. - remove `trailing_spaces_` prefixes from settings. Settings with prefixes are still respected for backward-compatibility.
- Loading branch information
Showing
5 changed files
with
101 additions
and
127 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.mypy_cache | ||
TODO.md | ||
*.pyc |
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
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 @@ | ||
{ | ||
"*": { | ||
"*": [ | ||
"sublime_lib" | ||
] | ||
} | ||
} |
Oops, something went wrong.