From 995e0266facb25bb18387efaf378ea4c3b55201a Mon Sep 17 00:00:00 2001 From: colinkiama Date: Sun, 3 Apr 2022 00:19:39 +0000 Subject: [PATCH] amend previous commit --- compile.py | 2 +- setup.py | 2 +- utils.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/compile.py b/compile.py index b2de3f8..bba60bc 100644 --- a/compile.py +++ b/compile.py @@ -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): diff --git a/setup.py b/setup.py index 9976343..7c9a47e 100644 --- a/setup.py +++ b/setup.py @@ -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): diff --git a/utils.py b/utils.py index 452abb3..180441e 100644 --- a/utils.py +++ b/utils.py @@ -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: @@ -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"