Sanchayan Maity
0d0480a6b2
Using alias inside ~/.config/fish/config.fish can slow down shell start as each alias/function will be eagerly loaded. alias is slow because it involves eval. functions support lazy/auto loading. https://fishshell.com/docs/current/tutorial.html#autoloading-functions
3 lines
211 B
Fish
3 lines
211 B
Fish
function vdc --wraps='nvim (git diff HEAD^ --name-only --diff-filter=ACMR)' --description 'Edit all files that were altered in the last commit'
|
|
nvim (git diff HEAD^ --name-only --diff-filter=ACMR) $argv;
|
|
end
|