Skip to content

Commit 52c7201

Browse files
Anderson, ChaseAnderson, Chase
Anderson, Chase
authored and
Anderson, Chase
committed
fixed issue with completions reading from incorrect folder
1 parent 442ed45 commit 52c7201

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

completions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(self):
2323
def load_completions(self):
2424
if len(self.completions) == 0:
2525
source = get_setting("completions_file")
26-
plugin_folder = "summiteditor"
26+
plugin_folder = "SummitEditor"
2727
json_data = open(os.path.join(sublime.packages_path(), plugin_folder, source))
2828
self.completions = json.load(json_data)
2929
json_data.close()

messages/1.0.3.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SummitEditor v1.0.3
2+
* Fixed issue with completions searching for incorrect folder.

0 commit comments

Comments
 (0)