mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
16 lines
322 B
Fish
16 lines
322 B
Fish
|
#
|
||
|
# This function deletes a character from the commandline if it is
|
||
|
# non-empty, and exits the shell otherwise. Implementing this
|
||
|
# functionality has been a longstanding request from various
|
||
|
# fish-users.
|
||
|
#
|
||
|
|
||
|
function delete-or-exit --key-binding
|
||
|
if test (commandline)
|
||
|
commandline -f delete-char
|
||
|
else
|
||
|
exit
|
||
|
end
|
||
|
end
|
||
|
|