Skip to content

Instantly share code, notes, and snippets.

@violetyk
Created July 4, 2013 11:41
Show Gist options
  • Save violetyk/5926993 to your computer and use it in GitHub Desktop.
Save violetyk/5926993 to your computer and use it in GitHub Desktop.
function! s:search_line(path, term)
let line = match(readfile(a:path), '\%(const\|static\|function\)!\?\s*' . a:term)
if line >= 0
return line+1
endif
return 0
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment