summaryrefslogtreecommitdiffstats
path: root/runtime/indent
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-05-01 21:14:34 +0200
committerBram Moolenaar <Bram@vim.org>2012-05-01 21:14:34 +0200
commit8071607aa5e6f4decd2c3ba0a41cf2b3498b6f1e (patch)
treeb89b0ce21c32df983ad6b857b3ac55188a0f58ed /runtime/indent
parent2d0b92f8f9f765f2707a98a3493903f895c87c7f (diff)
More runtime file fixes for 'compatible' mode.
Diffstat (limited to 'runtime/indent')
-rw-r--r--runtime/indent/ada.vim4
-rw-r--r--runtime/indent/python.vim6
2 files changed, 5 insertions, 5 deletions
diff --git a/runtime/indent/ada.vim b/runtime/indent/ada.vim
index c7f8864362..03fbaa3a18 100644
--- a/runtime/indent/ada.vim
+++ b/runtime/indent/ada.vim
@@ -28,8 +28,6 @@
if exists("b:did_indent") || version < 700
finish
endif
-let s:keepcpo= &cpo
-set cpo&vim
let b:did_indent = 45
@@ -41,6 +39,8 @@ setlocal indentkeys+=0=~then,0=~end,0=~elsif,0=~when,0=~exception,0=~begin,0=~is
if exists("*GetAdaIndent")
finish
endif
+let s:keepcpo= &cpo
+set cpo&vim
if exists("g:ada_with_gnat_project_files")
let s:AdaBlockStart = '^\s*\(if\>\|while\>\|else\>\|elsif\>\|loop\>\|for\>.*\<\(loop\|use\)\>\|declare\>\|begin\>\|type\>.*\<is\>[^;]*$\|\(type\>.*\)\=\<record\>\|procedure\>\|function\>\|accept\>\|do\>\|task\>\|package\>\|project\>\|then\>\|when\>\|is\>\)'
diff --git a/runtime/indent/python.vim b/runtime/indent/python.vim
index 838865f87f..54ed123429 100644
--- a/runtime/indent/python.vim
+++ b/runtime/indent/python.vim
@@ -2,15 +2,13 @@
" Language: Python
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Original Author: David Bustos <bustos@caltech.edu>
-" Last Change: 2012 Apr 30
+" Last Change: 2012 May 01
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
-let s:keepcpo= &cpo
-set cpo&vim
" Some preliminary settings
setlocal nolisp " Make sure lisp indenting doesn't supersede us
@@ -23,6 +21,8 @@ setlocal indentkeys+=<:>,=elif,=except
if exists("*GetPythonIndent")
finish
endif
+let s:keepcpo= &cpo
+set cpo&vim
" Come here when loading the script the first time.