Files
dotfiles-xps/fish/functions/_autopair_tab.fish
2025-07-30 11:46:46 +02:00

8 lines
247 B
Fish

function _autopair_tab
commandline --paging-mode && down-or-search && return
string match --quiet --regex -- '\$[^\s]*"$' (commandline --current-token) &&
commandline --function delete-char
commandline --function complete
end