Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function doc() {
  2. vim $(find ~/wp-calypso -iname '*.md' ! -path '*/node_modules/*' | fzf)
  3. }
  4.  
  5. function vimf() {
  6. if [ -z $1 ]; then
  7. vim $(fzf)
  8. else
  9. vim $(fzf -q $1)
  10. fi
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement