aboutsummaryrefslogtreecommitdiff
path: root/.config/fish/functions/fish_commandline_toggle.fish
diff options
context:
space:
mode:
authordelta <darkussdelta@gmail.com>2025-07-04 00:38:29 +0200
committerdelta <darkussdelta@gmail.com>2025-07-04 00:38:29 +0200
commitb3530d7c4a102935fa26498a160ee1dc6c1e9c03 (patch)
treed7751206a694bc5de2d6b34b0c077cfcd1855798 /.config/fish/functions/fish_commandline_toggle.fish
parentdf75ec5ed5e3848c497f0439acb43ec9246ad3e7 (diff)
:3
Diffstat (limited to '.config/fish/functions/fish_commandline_toggle.fish')
-rw-r--r--.config/fish/functions/fish_commandline_toggle.fish26
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/fish/functions/fish_commandline_toggle.fish b/.config/fish/functions/fish_commandline_toggle.fish
new file mode 100644
index 0000000..688c97e
--- /dev/null
+++ b/.config/fish/functions/fish_commandline_toggle.fish
@@ -0,0 +1,26 @@
+function __commandline_stash -d 'Stash current command line'
+ set -g __stash_command_position (commandline -C)
+ set -g __stash_command (commandline -b)
+ commandline -r ""
+end
+
+function __commandline_pop -d 'Pop last stashed command line'
+ if not set -q __stash_command
+ return
+ end
+ commandline -r $__stash_command
+ if set -q __stash_command_position
+ commandline -C $__stash_command_position
+ end
+ set -e __stash_command
+ set -e __stash_command_position
+end
+
+function fish_commandline_toggle -d 'Stash current commandline if not empty, otherwise pop last stashed commandline'
+ set -l cmd (commandline -b)
+ if test "$cmd"
+ __commandline_stash
+ else
+ __commandline_pop
+ end
+end