Skip to content

Instantly share code, notes, and snippets.

View christierney's full-sized avatar

Chris Tierney christierney

View GitHub Profile
@jmcphers
jmcphers / dev-tools.md
Created September 16, 2022 15:11
Jonathan's Favorite Dev Tools 2022

Terminal Tools

z

z makes changing directories less of a typing chore. It learns which directories you use often and lets you jump into them by typing just a few characters. I use it constantly and consider it the most time-saving tool I use.

https://github.com/rupa/z

fzf

@mfwarren
mfwarren / .ctags
Created January 24, 2011 16:34
my .ctags syntax file for Groovy language (exuberant-ctags)
--langdef=groovy
--langmap=groovy:.groovy
--regex-groovy=/^[ \t]*[(private|public|protected) ( \t)]*def[ \t]+([A-Za-z0-9_]+)[ \t]*\(/\1/f,function,functions/
--regex-groovy=/^[ \t]*private def[ \t]+([A-Za-z0-9_]+)[ \t]*/\1/v,private,private variables/
--regex-groovy=/^[ \t]*public def[ \t]+([A-Za-z0-9_]+)[ \t]*/\1/u,public,public variables/
--regex-groovy=/^[ \t]*[abstract ( \t)]*[(private|public) ( \t)]*class[ \t]+([A-Za-z0-9_]+)[ \t]*/\1/c,class,classes/
--regex-groovy=/^[ \t]*[abstract ( \t)]*[(private|public) ( \t)]*enum[ \t]+([A-Za-z0-9_]+)[ \t]*/\1/c,class,classes/