From e1113bd09c9890a97cf29eb27f0cddc29b9e4c0d Mon Sep 17 00:00:00 2001 From: xfy Date: Tue, 26 Nov 2024 08:48:00 +0800 Subject: [PATCH] disable wezterm copy on selection --- wezterm/macos/wezterm.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wezterm/macos/wezterm.lua b/wezterm/macos/wezterm.lua index c66165b..2d4deb3 100644 --- a/wezterm/macos/wezterm.lua +++ b/wezterm/macos/wezterm.lua @@ -35,6 +35,14 @@ config.hide_tab_bar_if_only_one_tab = true config.color_scheme = "Catppuccin Mocha" config.font_size = 16 +config.mouse_bindings = { + { + event = { Up = { streak = 1, button = "Left" } }, + mods = "NONE", + action = wezterm.action.Nop, + }, +} + -- keys config.keys = { { key = "l", mods = "ALT", action = wezterm.action.ShowLauncher },