-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CMD+K Issue with vim-tmux-navigator Plugin #386
Comments
I'm surprised to hear this as the plugin shouldn't impact Ultimately I'm guessing Alacritty is mapping |
I have the same issue disabling the plugin fixes the issue, I have no clue why to reproduce ## home-manager.nix
programs = {
kitty = {
enable = true;
font = {
size = 12;
};
settings = {
mouse_hide_wait = "1.0";
window_padding_width = "2";
bold_font = "auto";
italic_font = "auto";
bold_italic_font = "auto";
};
keybindings = {
"alt+l" = "send_text all,program \\x0c";
};
};
tmux = {
enable = true;
baseIndex = 1;
mouse = true;
extraConfig = ''
bind -n M-l send-keys -k \; send-keys "clear" Enter
'';
plugins = with pkgs.tmuxPlugins; [
(
vim-tmux-navigator.overrideAttrs
(_: {
src = pkgs.fetchFromGitHub {
owner = "christoomey";
repo = "vim-tmux-navigator";
rev = "424b5caa154bff34dc258ee53cec5a8e36cf7ea8";
sha256 = "sha256-ZwJuBG0P20eQ9uVHeWF4Z8AaFo14MxNSCdjW/O6vLws=";
};
})
)
];
};
}; tmux version: 3.4 let me know if you need the kitty.conf & tmux.conf |
CMD+K Issue with vim-tmux-navigator Plugin
Issue
When using the
vim-tmux-navigator
plugin, theCMD+K
keyboard shortcut, which is typically used to clear the terminal screen, stops working. This issue seems to arise after installing the plugin.Expected Behavior
Normally, pressing
CMD+K
in the terminal clears the visible screen content, providing a clean slate. This is a built-in shortcut in many terminal emulators, including Alacritty, iTerm2, and Terminal.app on macOS.Actual Behavior
After installing the
vim-tmux-navigator
plugin, theCMD+K
shortcut does not clear the terminal as expected. Instead, there is no response, and the screen content remains unchanged.Steps to Reproduce
CMD+K
to clear the screen — it works as expected.vim-tmux-navigator
plugin following the provided installation instructions.CMD+K
again and observe that the screen is not cleared.The text was updated successfully, but these errors were encountered: