diff options
author | Jan Pokorný <jpokorny@redhat.com> | 2012-02-03 01:30:01 +0100 |
---|---|---|
committer | Jan Pokorný <jpokorny@redhat.com> | 2012-02-03 01:30:01 +0100 |
commit | fc2d9a48e9a5504f0ae4356278aa854cf2def1b1 (patch) | |
tree | 096a1a2479956be54e3859c553b93aade1dd41db /init-python | |
parent | 1efc8a2e2f475c9cb4d353d02177ff6fd335b4a5 (diff) | |
download | vim4projects-fc2d9a48e9a5504f0ae4356278aa854cf2def1b1.tar.gz vim4projects-fc2d9a48e9a5504f0ae4356278aa854cf2def1b1.tar.xz vim4projects-fc2d9a48e9a5504f0ae4356278aa854cf2def1b1.zip |
init: modular approach
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'init-python')
-rw-r--r-- | init-python | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/init-python b/init-python new file mode 100644 index 0000000..b82705f --- /dev/null +++ b/init-python @@ -0,0 +1,10 @@ +# vim plugins for Python projects +CHOICES="$CHOICES|python" + +python () { + announce "--- python ---" + # Python-mode: + # integrates pylint, rope, pydoc, pyflakes + # + extra highlighting, whitespace removal ... + do_git_submodule $1 "git-python-mode" +} |