diff --git a/home/.config/herdr/config.toml b/home/.config/herdr/config.toml index d3ae1b4..8fa93ac 100644 --- a/home/.config/herdr/config.toml +++ b/home/.config/herdr/config.toml @@ -13,11 +13,5 @@ goto = "prefix+g" copy_mode = "prefix+y" # herdr's copy-mode entry key; copy-mode's own internal keys (v/space select, y/Enter copy, q/Esc cancel) aren't configurable [ui] -# Disable Herdr's host mouse capture so a trackpad event can't tailgate a held -# Escape and get it swallowed in the pane (e.g. Neovim stuck in insert mode). -# Only effective together with the pane keeping mouse off (see nvim mouse below). -mouse_capture = false -# Agents panel order: "spaces" (grouped by space, the default) vs "priority". -# Set explicitly because with mouse_capture=false the header click-toggle is -# unreachable, so the sort is fixed by this value. +# Agents panel order: explicit choice of "spaces" (grouped by space, the default) over "priority". agent_panel_sort = "spaces" diff --git a/home/.config/wezterm/wezterm.lua b/home/.config/wezterm/wezterm.lua index 8414340..8bb9ce8 100644 --- a/home/.config/wezterm/wezterm.lua +++ b/home/.config/wezterm/wezterm.lua @@ -10,11 +10,4 @@ config.macos_window_background_blur = 50 config.hide_tab_bar_if_only_one_tab = true config.window_decorations = "RESIZE" --- With Herdr mouse_capture=false, the Herdr client is a full-screen alt-screen app --- enabling no mouse reporting, so WezTerm would otherwise synthesize Up/Down arrow --- keys for wheel scroll (default speed 3) and a pane REPL reads them as history --- navigation. Set to 0 so wheel input in alternate-screen apps is never turned into --- arrow keys. Scroll pane scrollback with PageUp/PageDown or copy-mode (prefix+y). -config.alternate_buffer_wheel_scroll_speed = 0 - return config