Commit 4eb09687800d

Vincent Demeester <vincent@sbr.pm>
2026-02-05 23:19:31
fix(kitty): copy hints to clipboard instead of pasting
Changed --program flag from '-' (paste at cursor) to '@' (copy to clipboard) for word, path, and line hint types.
1 parent f28fa1b
Changed files (1)
home
common
desktop
home/common/desktop/kitty.nix
@@ -90,14 +90,14 @@
       # Define hints action with custom alphabet and colors
       action_alias mkh kitten hints --alphabet sadfjklewcmpgh --hints-background-color=black --hints-foreground-color=green --hints-text-color=magenta
 
-      # Word hints - select and copy words
-      map kitty_mod+d mkh --type word --program -
+      # Word hints - select and copy to clipboard
+      map kitty_mod+d mkh --type word --program @
 
-      # Path hints - select and copy file paths
-      map kitty_mod+f mkh --type path --program -
+      # Path hints - select and copy to clipboard
+      map kitty_mod+f mkh --type path --program @
 
-      # Line hints - select and copy entire lines
-      map kitty_mod+l mkh --type=line --program -
+      # Line hints - select and copy to clipboard
+      map kitty_mod+l mkh --type=line --program @
 
       # Line number hints - open file at specific line in nvim
       map kitty_mod+n mkh --type=linenum nvim +{line} {path}