diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-24 23:01:23 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-24 23:01:23 +0000 |
commit | 0a5fe2140db2e6688a7ef42031a21d8293038715 (patch) | |
tree | c4a543636157a7e148ef789201f0f6373f8b548e /runtime/indent/pyrex.vim | |
parent | c4def13f8bc6631add3b10bb84783acca72795ae (diff) | |
download | vim-git-0a5fe2140db2e6688a7ef42031a21d8293038715.tar.gz |
updated for version 7.0092
Diffstat (limited to 'runtime/indent/pyrex.vim')
-rw-r--r-- | runtime/indent/pyrex.vim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/indent/pyrex.vim b/runtime/indent/pyrex.vim index e7771264e..a1a174667 100644 --- a/runtime/indent/pyrex.vim +++ b/runtime/indent/pyrex.vim @@ -2,7 +2,12 @@ " Language: Pyrex " Maintainer: Marco Barisione <marco.bari@people.it> " URL: http://marcobari.altervista.org/pyrex_vim.html -" Last Change: 2004 May 16 +" Last Change: 2005 Jun 24 + +" Only load this indent file when no other was loaded. +if exists("b:did_indent") + finish +endif " Use Python formatting rules runtime! indent/python.vim |