diff options
-rw-r--r-- | manifest.json | 2 | ||||
-rw-r--r-- | plugins/tab_switcher.lua | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/manifest.json b/manifest.json index b848e7a..cf8c9f5 100644 --- a/manifest.json +++ b/manifest.json @@ -1721,7 +1721,7 @@ }, { "description": "Switch between open tabs by searching by name", - "version": "0.2", + "version": "0.3", "path": "plugins/tab_switcher.lua", "id": "tab_switcher", "mod_version": "3" diff --git a/plugins/tab_switcher.lua b/plugins/tab_switcher.lua index 41fdf84..1144153 100644 --- a/plugins/tab_switcher.lua +++ b/plugins/tab_switcher.lua @@ -28,8 +28,8 @@ function keymap.on_key_released(k) -- Check if hold_mode has been triggered erroneously if hold_mode and not in_switcher then hold_mode = false - core.warning("Something went wrong with the tab_switcher plugin. " .. - "Please open an issue about it in the plugins repository on Github.") + core.warn("Something went wrong with the tab_switcher plugin. " .. + "Please open an issue about it in the plugins repository on Github.") end local was_pressed = any_true(keymap.modkeys) |