We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9b74a commit 75cebefCopy full SHA for 75cebef
PICO-8.sublime-settings
@@ -8,5 +8,6 @@
8
"line_padding_bottom": 1,
9
"line_padding_top": 1,
10
"highlight_line": true,
11
- "pico-8_path": "undefined"
+ "pico-8_path": "undefined",
12
+ "pico-8_auto_lowercase": true
13
}
pico_on_save.py
@@ -11,4 +11,5 @@ class PicoOnSave(sublime_plugin.EventListener):
def on_pre_save(self, view):
syntax = view.settings().get("syntax")
if "PICO-8" in syntax:
14
- view.run_command("pico_to_lower")
+ if view.settings().get("pico-8_auto_lowercase", True):
15
+ view.run_command("pico_to_lower")
0 commit comments