Sha256: 12696a825ed099eadd0895cc021254f9ed17e02cd864e87eece485181759068b
Contents?: true
Size: 622 Bytes
Versions: 56
Compression:
Stored size: 622 Bytes
Contents
#!/bin/sh # Indexes all tags for this repository for easy navigation with Vim, storing the # file in <repo>/.git/tags. If you're using Fugitive.vim, you'll automatically # have access to the tags file; otherwise you'll have to modify your `tags` # option in your vimrc to search the generated file. set -e trap "rm -f $GIT_DIR/tags.$$" EXIT err_file=$GIT_DIR/ctags.err if ctags --tag-relative -Rf$GIT_DIR/tags.$$ --exclude=.git "$@" 2>${err_file}; then mv $GIT_DIR/tags.$$ $GIT_DIR/tags [ -e ${err_file} ] && rm -f ${err_file} else # Ignore STDERR unless `ctags` returned a non-zero exit code cat ${err_file} fi
Version data entries
56 entries across 54 versions & 4 rubygems