dotfiles/.config/fish/myfunctions/qol.fish

11 lines
212 B
Fish
Raw Normal View History

2023-03-17 15:06:26 +00:00
bind \cH backward-kill-path-component
bind "[3;5~" kill-word
function backup --argument filename
cp $filename $filename.bak
end
2023-03-17 15:06:26 +00:00
function restore --argument file
mv $file (echo $file | sed s/.bak//)
end