aboutsummaryrefslogtreecommitdiff
path: root/modules/base/fish/functions/__history_previous_command.fish
diff options
context:
space:
mode:
Diffstat (limited to 'modules/base/fish/functions/__history_previous_command.fish')
-rw-r--r--modules/base/fish/functions/__history_previous_command.fish8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/base/fish/functions/__history_previous_command.fish b/modules/base/fish/functions/__history_previous_command.fish
new file mode 100644
index 00000000000..40555452230
--- /dev/null
+++ b/modules/base/fish/functions/__history_previous_command.fish
@@ -0,0 +1,8 @@
+function __history_previous_command
+ switch (commandline -t)
+ case "!"
+ commandline -t $history[1]; commandline -f repaint
+ case "*"
+ commandline -i !
+ end
+end