We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f82c93e commit a35f67aCopy full SHA for a35f67a
2 files changed
commands_browser.py
@@ -1,21 +1,7 @@
1
import os
2
-import sys
3
-import imp
4
import shutil
5
import sublime
6
7
-
8
-def reload(prefix, modules=[""]):
9
- prefix = "CommandsBrowser.%s." % prefix
10
11
- for module in modules:
12
- module = (prefix + module).rstrip(".")
13
- if module in sys.modules:
14
- imp.reload(sys.modules[module])
15
16
-reload("src")
17
18
19
from .src.settings import load_commands_browser_settings
20
from .src import (
21
CommandsBrowserCoreCommandsCommand,
resources/CommandsBrowser.sublime-syntax
@@ -47,6 +47,7 @@ contexts:
47
- match: \(
48
scope: punctuation.section.parens.begin.doc_panel
49
push: arg_type_brackets_body
50
+ - include: arg_options
51
52
arg_type_brackets_body:
53
- meta_scope: meta.parens.doc_panel
0 commit comments