Skip to content

Commit c3fb4e5

Browse files
committed
Bugfix: get v2 project settings
1 parent 25459f7 commit c3fb4e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hyper_click/generic_path_resolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __init__(self, view, str_path, current_dir, roots, settings):
6565
)
6666

6767
# check the view for applicable project settings
68-
project_settings = view.settings().get('hyper_click', {})
68+
project_settings = view.settings().get('HyperClick', {})
6969
project_scopes = project_settings.get('scopes', {})
7070
for selector in project_scopes:
7171
if view.match_selector(cursor, selector):

hyper_click_annotator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def plugin_loaded():
128128
return
129129

130130
settings = sublime.load_settings('HyperClick.sublime-settings')
131-
project_settings = view.settings().get('hyper_click', {})
131+
project_settings = view.settings().get('HyperClick', {})
132132
old_keys = [
133133
'supported_syntaxes',
134134
'import_line_regex',

0 commit comments

Comments
 (0)