This assumes you have installed [fzf][1].
$ git branch --no-color | fzf -m | xargs -I {} git branch -D '{}'
Press tab to mark a branch, shift-tab to unmark. Press enter and all marked branches will be deleted.
| """"""""""""""""""""""""""""""""""""" | |
| " Allan MacGregor Vimrc configuration | |
| """"""""""""""""""""""""""""""""""""" | |
| set nocompatible | |
| syntax on | |
| set nowrap | |
| set encoding=utf8 | |
| """" START Vundle Configuration |
I used to use NERD tree for quite a while, then switched to CtrlP for something a little more lightweight. My setup now includes zero file browser or tree view, and instead uses native Vim fuzzy search and auto-directory switching.
There is a super sweet feature in Vim whereby you can fuzzy find your files using **/*, e.g.:
:vs **/*<partial file name><Tab>