mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-17 08:01:14 -03:00
17 lines
328 B
Fish
17 lines
328 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
|
|
set -l cmd (commandline)
|
|
if test "$cmd"
|
|
commandline -f delete-char
|
|
else
|
|
exit 0
|
|
end
|
|
end
|
|
|