mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00

Add comprehensive helix-like modal key bindings system for fish shell with: - New `fish_helix_key_bindings` function with helix-inspired navigation - Modal editing support with count modifiers via `fish_bind_count` - Visual mode prompt indicator via `fish_default_mode_prompt` - Enhanced clipboard integration with proper notification formatting The implementation provides vim/helix-style modal editing while maintaining fish shell compatibility and includes proper mode indicators, count tracking, and seamless integration with existing fish key binding systems.
8 lines
237 B
Fish
8 lines
237 B
Fish
function clipboard_to_wlcopy
|
|
set clip $(cliphist list | rofi -dmenu -p 'clipboard copy')
|
|
if not [ -z $clip ]
|
|
echo $clip | cliphist decode | wl-copy
|
|
dunstify Clipboard "Clip '$clip' was copied" -t 2000
|
|
end
|
|
end
|