Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions home/.config/herdr/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
7 changes: 0 additions & 7 deletions home/.config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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