Skip to content

Instantly share code, notes, and snippets.

@dep-deprecated
Created July 22, 2016 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dep-deprecated/5e26da6ef8eb2f3a7f2da345bd180cc8 to your computer and use it in GitHub Desktop.
Save dep-deprecated/5e26da6ef8eb2f3a7f2da345bd180cc8 to your computer and use it in GitHub Desktop.
Vim Open With: Open all files in vim matching a string
#! /bin/bash
if [[ -z "$1" ]]; then
echo 'missing search'
else
vim $(ag --html --js --css --py -l "$1") -c /"$1"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment