DEV Community

Discussion on: What are your CLI go to commands and aliases?

Collapse
 
ikirker profile image
Ian Kirker

I write a fair amount of script-y tooling, so this one saves me a lot of keystrokes:

function vp () {
   vim "$(which "$1")"
}