dotfiles/.config/fish/functions/_autopair_backspace.fish

10 lines
323 B
Fish
Raw Normal View History

2023-07-10 06:53:13 -04:00
function _autopair_backspace
set --local index (commandline --cursor)
set --local buffer (commandline)
test $index -ge 1 &&
contains -- (string sub --start=$index --length=2 -- "$buffer") $autopair_pairs &&
commandline --function delete-char
commandline --function backward-delete-char
end