dotfiles/.config/fish/functions/__abbr_tips_bind_newline.fish
2023-10-11 11:21:56 +02:00

10 lines
262 B
Fish

function __abbr_tips_bind_newline
if test $__abbr_tips_used != 1
if abbr -q -- (string trim -- (commandline))
set -g __abbr_tips_used 1
else
set -g __abbr_tips_used 0
end
end
commandline -f execute
end