diff --git a/commands.py b/commands.py index da41c50..510f2fd 100644 --- a/commands.py +++ b/commands.py @@ -14,7 +14,10 @@ class CondaCommand(sublime_plugin.WindowCommand): @property def settings(self): """Load the plugin settings for commands to use.""" - return sublime.load_settings('conda.sublime-settings') + if sys.platform.startswith('win'): + return sublime.load_settings('Conda (Windows).sublime-settings') + else: + return sublime.load_settings('Conda.sublime-settings') @property def executable(self): diff --git a/messages.json b/messages.json index 42334f4..8deae4e 100644 --- a/messages.json +++ b/messages.json @@ -12,5 +12,6 @@ "0.4.2": "messages/v0.4.2.txt", "0.4.3": "messages/v0.4.3.txt", "0.4.4": "messages/v0.4.4.txt", - "0.4.5": "messages/v0.4.5.txt" + "0.4.5": "messages/v0.4.5.txt", + "0.4.6": "messages/v0.4.6.txt" } diff --git a/messages/v0.4.6.txt b/messages/v0.4.6.txt new file mode 100644 index 0000000..80d3631 --- /dev/null +++ b/messages/v0.4.6.txt @@ -0,0 +1,4 @@ +Conda v0.4.6 +============ + +- Fix settings file not being loaded