aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--atuin/src/shell/atuin.fish9
1 files changed, 6 insertions, 3 deletions
diff --git a/atuin/src/shell/atuin.fish b/atuin/src/shell/atuin.fish
index 2f007fcf..061ea8d1 100644
--- a/atuin/src/shell/atuin.fish
+++ b/atuin/src/shell/atuin.fish
@@ -19,15 +19,18 @@ end
function _atuin_search
set h (ATUIN_SHELL_FISH=t ATUIN_LOG=error atuin search $argv -i -- (commandline -b) 3>&1 1>&2 2>&3)
- commandline -f repaint
if test -n "$h"
- if string match -g '__atuin_accept__:*' "$h"
- eval (string match -r '__atuin_accept__:(.*|\s*)' "$h" | awk 'NR == 2')
+ if string match -qg '__atuin_accept__:*' "$h"
+ set hist (string match -r '__atuin_accept__:(.*|\s*)' "$h" | awk 'NR == 2')
+ echo $hist
+ eval $hist
else
commandline -r "$h"
end
end
+
+ commandline -f repaint
end
function _atuin_bind_up