We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c583b42 commit 0697e2dCopy full SHA for 0697e2d
dot_config/fish/conf.d/70-keybindings.fish
@@ -2,6 +2,14 @@
2
# Key Bindings
3
# =============================================================================
4
5
+function __braden_tab_or_yazi
6
+ if test -z (string trim -- (commandline))
7
+ yazi_choose
8
+ else
9
+ commandline -f complete
10
+ end
11
+end
12
+
13
function __braden_up_or_history
14
if commandline -P
15
commandline -f up-line
@@ -72,6 +80,7 @@ end
72
80
if status is-interactive
73
81
bind \r __braden_magic_enter
74
82
bind \e\e __braden_toggle_sudo
83
+ bind \t __braden_tab_or_yazi
75
84
bind \cy yazi_choose
76
85
bind super-c fish_clipboard_copy
77
86
bind left '__braden_move_or_collapse_selection start backward-char'
0 commit comments