Merge branch 'master' of /home/git/Development/dotfiles

This commit is contained in:
sonny 2018-07-23 22:09:41 +02:00
commit 9204716d04

6
scripts/create_tags Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
# Create ctags from the current dir and the same dir in the .virtualenvs folder
PROJECT_NAME=$(basename $PWD)
ctags -R $PWD $HOME/.virtualenvs/$PROJECT_NAME
mkdir -p $HOME/.tags && mv ./tags $HOME/.tags/$PROJECT_NAME