make fish support !!

linux
Andrew Cassidy 6 years ago
parent ed63863dff
commit a7ac0bff50
No known key found for this signature in database
GPG Key ID: 963017B38FD477A1

3
.gitmodules vendored

@ -0,0 +1,3 @@
[submodule "fishline-fork"]
path = fish/.config/fish/fishline
url = https://github.com/drewcassidy/fishline

@ -0,0 +1 @@
Subproject commit bddf62a3237d5f011b4a844b2fa78473d653caff

@ -48,7 +48,7 @@ set FLCLR_CONDA_BG $FLCLR_VFISH_BG
set FLCLR_CONDA_FG $FLCLR_VFISH_FG
# Color for GIT segment
set FLCLR_GIT_BG_CLEAN green
set FLCLR_GIT_BG_CLEAN green
set FLCLR_GIT_FG_CLEAN black
set FLCLR_GIT_BG_DIRTY yellow
set FLCLR_GIT_FG_DIRTY black

@ -0,0 +1,8 @@
function __history_previous_command
switch (commandline -t)
case "!"
commandline -t $history[1]; commandline -f repaint
case "*"
commandline -i !
end
end

@ -0,0 +1,9 @@
function __history_previous_command_arguments
switch (commandline -t)
case "!"
commandline -t ""
commandline -f history-token-search-backward
case "*"
commandline -i '$'
end
end

@ -0,0 +1,4 @@
function fish_user_key_bindings
bind ! __history_previous_command
bind '$' __history_previous_command_arguments
end
Loading…
Cancel
Save