forked from shabbychef/SharpeR
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebuildTags.sh
executable file
·39 lines (35 loc) · 1023 Bytes
/
rebuildTags.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#! /bin/bash
#
# get ctags in R for, recursively, foo.R
#
# this builds exuberant ctags for R
# you need to have a .ctags file in your
# home directory.
#
# Copyright: Cerebellum Capital, 2008-2009
# Author: Steven E. Pav
# Comments: Steven E. Pav
# SVN: $Id: rebuildTags.sh 31471 2012-11-06 18:28:48Z steven $
#CTAGS=exuberant-ctags
if [ "$LINUX_DISTRO" == "CRAPINTOSH" ]; then
CTAGS=/opt/local/bin/ctags
else
CTAGS=ctags
fi
echo $CTAGS
CTAGFLAGS='--verbose=no --recurse'
NICE_LEVEL=18
NICE_FLAGS="-n $NICE_LEVEL"
TMP_TAG=.tmp_tags
##set up the R tags
#for minimal disruption, write it to $TMP_TAG and then move it...
nice $NICE_FLAGS $CTAGS -f $TMP_TAG $CTAGFLAGS --language-force=R --exclude='.r\~' --fields=+i \
`find . -name '*.[rR]' | grep -ve '\.git\|\.staging\|\.Rcheck\|\.local'` 2>/dev/null
if [ -s $TMP_TAG ];
then
mv $TMP_TAG .R_tags;
else
echo "empty R tags?" 1>&2
fi
ln -sf .R_tags .tags
# vim:ts=4:sw=2:tw=180:fdm=marker:fmr=FOLDUP,UNFOLD:cms=#%s:syn=sh:ft=sh:ai:si:cin:nu:fo=croql:cino=p0t0c5(0: