Remove navigator from wezterm

This commit is contained in:
Evie Litherland-Smith 2023-05-17 19:37:24 +01:00
parent 3a282dbee5
commit 3060abea6b
2 changed files with 0 additions and 32 deletions

View file

@ -1,30 +0,0 @@
local wezterm = require "wezterm"
local act = wezterm.action
local function isViProcess(pane)
-- get_foreground_process_name On Linux, macOS and Windows,
-- the process can be queried to determine this path. Other operating systems
-- (notably, FreeBSD and other unix systems) are not currently supported
return pane:get_foreground_process_name():find "n?vim" ~= nil
-- return pane:get_title():find("n?vim") ~= nil
end
local function conditionalActivatePane(window, pane, pane_direction, vim_direction)
if isViProcess(pane) then
window:perform_action(
-- This should match the keybinds you set in Neovim.
act.SendKey { key = vim_direction, mods = "ALT" },
pane
)
else
window:perform_action(act.ActivatePaneDirection(pane_direction), pane)
end
end
wezterm.on(
"ActivatePaneDirection-right",
function(window, pane) conditionalActivatePane(window, pane, "Right", "l") end
)
wezterm.on("ActivatePaneDirection-left", function(window, pane) conditionalActivatePane(window, pane, "Left", "h") end)
wezterm.on("ActivatePaneDirection-up", function(window, pane) conditionalActivatePane(window, pane, "Up", "k") end)
wezterm.on("ActivatePaneDirection-down", function(window, pane) conditionalActivatePane(window, pane, "Down", "j") end)

View file

@ -7,8 +7,6 @@
local scheme_name = "tokyonight_storm"
local scheme = require("wezterm").color.get_builtin_schemes()[scheme_name]
tab_bar_style.setup(scheme)
-- require("status").setup(scheme)
require "navigator"
return {
audible_bell = "Disabled",