Skip to content

Commit

Permalink
wezterm no longer grabs Ctrl-Alt-L.
Browse files Browse the repository at this point in the history
  • Loading branch information
yipengsun committed Sep 25, 2024
1 parent 369c28f commit c7cb8ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ config.wsl_domains = {
{
name = 'WSL:NixOS',
distribution = 'NixOS',
default_prog = { '/run/current-system/sw/bin/zsh' },
default_prog = { '/run/current-system/sw/bin/fish' },
default_cwd = '~',
},
}
Expand Down Expand Up @@ -93,10 +93,10 @@ config.keys = {

-- ctrl-alt key bindings
-- activates the debug overlay
{ key = 'l', mods = 'CTRL|ALT', action = act.ShowDebugOverlay },
{ key = 'l', mods = 'CTRL|SHIFT|ALT', action = act.ShowDebugOverlay },

-- reload
{ key = 'r', mods = 'CTRL|ALT', action = act.ReloadConfiguration },
{ key = 'r', mods = 'CTRL|SHIFT|ALT', action = act.ReloadConfiguration },

-- create a new tab in the same domain as the current pane
{
Expand Down

0 comments on commit c7cb8ab

Please sign in to comment.