diff --git a/Find Results.sublime-settings b/Find Results.sublime-settings index 48f4eda..2516cda 100644 --- a/Find Results.sublime-settings +++ b/Find Results.sublime-settings @@ -1,4 +1,6 @@ { + // To enable dark theme uncomment line bellow + // "color_scheme": "Packages/BetterFindBuffer/FindResultsDark.hidden-tmTheme", "color_scheme": "Packages/BetterFindBuffer/FindResults.hidden-tmTheme", "draw_indent_guides": false, "gutter": false, diff --git a/FindResultsDark.hidden-tmTheme b/FindResultsDark.hidden-tmTheme new file mode 100644 index 0000000..af0f20f --- /dev/null +++ b/FindResultsDark.hidden-tmTheme @@ -0,0 +1,175 @@ + + + + + name + Sublime Find Results + settings + + + settings + + background + #131415 + + foreground + #DAD6CD + + caret + #FFFFFF + + invisibles + #404040 + + lineHighlight + #452455 + + selection + #5B2E73 + selectionBorder + #c862e687 + + selectionForeground + #000000 + + + + + scope + variable.total_files_count.find-in-files + settings + + foreground + #FFCC33 + fontStyle + bold + + + + + scope + string.query.find-in-files + settings + + foreground + #ffff00 + fontStyle + bold + + + + + scope + variable.matched_count.find-in-files + settings + + foreground + #FFCC33 + fontStyle + bold + + + + + scope + variable.matched_files_count.find-in-files + settings + + foreground + #FFCC33 + fontStyle + bold + + + + + scope + variable.no_matches.find-in-files + settings + + foreground + #ff0000 + fontStyle + bold + + + + + + scope + constant.numeric.line-number.find-in-files + settings + + foreground + #F26FBC + + + + + scope + + match.find-in-files + settings + + background + #1a1a1a + foreground + #ffff00 + + + + + scope + + constant.numeric.line-number.match.find-in-files + settings + + foreground + #F26FBC + background + #4A0A2F + + + + + scope + punctuation.line-number.match.find-in-files + settings + + foreground + #FFD42044 + background + #FFD42044 + + + + + + scope + entity.name.filename.find-in-files + settings + + background + #332032 + foreground + #A660A6 + fontStyle + bold + + + + + scope + footer.find-in-files + settings + + background + #33333322 + + + + + uuid + edcc9b28-ac04-4b4a-8fa3-f4be3c0d3b02 + + diff --git a/Main.sublime-menu b/Main.sublime-menu index 424172e..06512a0 100644 --- a/Main.sublime-menu +++ b/Main.sublime-menu @@ -9,35 +9,18 @@ "caption": "BetterFindBuffer", "children": [ { - "command": "open_file", - "args": { - "file": "${packages}/BetterFindBuffer/BetterFindBuffer.sublime-settings" - }, - "caption": "Settings – Default" + "caption": "Settings", + "command": "edit_settings", + "args": { + "base_file": "${packages}/BetterFindBuffer/BetterFindBuffer.sublime-settings", + "default": "// Settings in here override those in \"BetterFindBuffer/BetterFindBuffer.sublime-settings\",\n\n{\n\t$0\n}\n"} }, { - "command": "open_file", - "args": { - "file": "${packages}/User/BetterFindBuffer.sublime-settings" - }, - "caption": "Settings – User" - }, - { - "caption": "-" - }, - { - "command": "open_file", - "args": { - "file": "${packages}/BetterFindBuffer/Find Results.sublime-settings" - }, - "caption": "Find Results Settings – Default" - }, - { - "command": "open_file", - "args": { - "file": "${packages}/User/Find Results.sublime-settings" - }, - "caption": "Find Results Settings – User" + "caption": "Find Results Settings", + "command": "edit_settings", + "args": { + "base_file": "${packages}/BetterFindBuffer/Find Results.sublime-settings", + "default": "// Settings in here override those in \"BetterFindBuffer/Find Results.sublime-settings\",\n\n{\n\t$0\n}\n"} } ] }]