diff options
Diffstat (limited to 'indent/aap.vim')
-rw-r--r-- | indent/aap.vim | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indent/aap.vim b/indent/aap.vim new file mode 100644 index 00000000..9e7573df --- /dev/null +++ b/indent/aap.vim @@ -0,0 +1,16 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'aap') == -1 + +" Vim indent file +" Language: Aap recipe +" Maintainer: Bram Moolenaar <Bram@vim.org> +" Last Change: 2005 Jun 24 + +" Only load this indent file when no other was loaded. +if exists("b:did_indent") + finish +endif + +" Works mostly like Python. +runtime! indent/python.vim + +endif |