aboutsummaryrefslogtreecommitdiff
path: root/modules/base/fish/functions/__history_previous_command_arguments.fish
diff options
context:
space:
mode:
Diffstat (limited to 'modules/base/fish/functions/__history_previous_command_arguments.fish')
-rw-r--r--modules/base/fish/functions/__history_previous_command_arguments.fish9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/base/fish/functions/__history_previous_command_arguments.fish b/modules/base/fish/functions/__history_previous_command_arguments.fish
new file mode 100644
index 00000000000..adc8fbd273d
--- /dev/null
+++ b/modules/base/fish/functions/__history_previous_command_arguments.fish
@@ -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