Skip to content
This repository has been archived by the owner on Nov 4, 2022. It is now read-only.

Commit

Permalink
amend previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
colinkiama committed Apr 3, 2022
1 parent f9432a3 commit 995e026
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
build_dirs = []
build_dir_names = []

importlib.import_module('meson')
importlib.import_module('Meson')

class MesonCompileInputHandler(sublime_plugin.ListInputHandler):
def name(self):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'placeholder': 'Prefix (Leave blank for default value)',
}

importlib.import_module('meson')
importlib.import_module('Meson')

class MesonSetupInputHandler(sublime_plugin.TextInputHandler):
def __init__(self, request):
Expand Down
6 changes: 3 additions & 3 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
BUILD_CONFIG_NAME = 'meson.build'
STATUS_MESSAGE_PREFIX = 'Meson'

panels = {'meson': None}
panels = {'Meson': None}

def _test_paths_for_executable(paths, test_file):
for directory in paths:
Expand Down Expand Up @@ -72,8 +72,8 @@ def display_status_message(message):
sublime.active_window().status_message(STATUS_MESSAGE_PREFIX + ': ' + message)

def update_output_panel(cmd_action):
panel = sublime.active_window().create_output_panel("meson")
sublime.active_window().run_command("show_panel", {"panel": "output.meson"})
panel = sublime.active_window().create_output_panel("Meson")
sublime.active_window().run_command("show_panel", {"panel": "output.Meson"})
panel.set_read_only(False)
env = os.environ
env["COLORTERM"] = "nocolor"
Expand Down

0 comments on commit 995e026

Please sign in to comment.