Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 716 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 716 Bytes

tt -- simple script to create aliases for ag matches

Essentially a rewrite of tag which hasn't been updated for ages. (Not adding any functionality -- most likely doing a subpar job, but decreasing dependencies.)

Dependencies

Notes

  • Creates a temporary file is /tmp/ttag_aliases
  • Considerably slower than tag because it is implemented in shell script (but has fewer dependencies)

installation (in zsh)

Add function to .zshrc:

tt() {
  command /path/to/tt.sh "$@"; source /tmp/ttag_aliases 
}