Permalink
Please sign in to comment.
Browse files
Create a devtools/ctags.sh script for understanding CPython.
Move completion/ to devtools/.
- Loading branch information...
Showing
with
22 additions
and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
| @@ -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