1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

kitty: add option mouseBindings (#8111)

This commit is contained in:
Alex Ionescu 2025-11-03 04:55:45 +01:00 committed by GitHub
parent 0fe68257a9
commit 50a5766d51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 35 additions and 1 deletions

View file

@ -19,5 +19,8 @@ action_alias launch_window launch --cwd=current --type=os-window
map ctrl+c copy_or_interrupt
map ctrl+f>2 set_font_size 20
mouse_map ctrl+left click ungrabbed mouse_handle_click selection link prompt
mouse_map left click ungrabbed no-op
env LS_COLORS=1

View file

@ -25,6 +25,11 @@
"ctrl+f>2" = "set_font_size 20";
};
mouseBindings = {
"ctrl+left click" = "ungrabbed mouse_handle_click selection link prompt";
"left click" = "ungrabbed no-op";
};
actionAliases = {
"launch_tab" = "launch --cwd=current --type=tab";
"launch_window" = "launch --cwd=current --type=os-window";

View file

@ -17,5 +17,8 @@ action_alias launch_window launch --cwd=current --type=os-window
map ctrl+c copy_or_interrupt
map ctrl+f>2 set_font_size 20
mouse_map ctrl+left click ungrabbed mouse_handle_click selection link prompt
mouse_map left click ungrabbed no-op
env LS_COLORS=1

View file

@ -25,6 +25,11 @@
"ctrl+f>2" = "set_font_size 20";
};
mouseBindings = {
"ctrl+left click" = "ungrabbed mouse_handle_click selection link prompt";
"left click" = "ungrabbed no-op";
};
actionAliases = {
"launch_tab" = "launch --cwd=current --type=tab";
"launch_window" = "launch --cwd=current --type=os-window";