Permalink
Browse files

Create a devtools/ctags.sh script for understanding CPython.

Move completion/ to devtools/.
  • Loading branch information...
Andy Chu
Andy Chu committed May 27, 2018
1 parent c1ad118 commit 86ec43df6c170af63ee687231cd43987693f0bcc
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
View
@@ -0,0 +1,22 @@
#!/bin/bash
#
# Usage:
# ./ctags.sh <function name>
set -o nounset
set -o pipefail
set -o errexit
ubuntu-deps() {
sudo apt install exuberant-ctags
}
# Creates a 9 MB file.
index-python() {
pushd Python-2.7.13/
ctags --recurse
ls -l tags
popd
}
"$@"

0 comments on commit 86ec43d

Please sign in to comment.