diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-03-11 15:57:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-03-11 15:57:40 +0100 |
commit | 84f7235bdbcc58876869ba8047530ef60443061a (patch) | |
tree | 5092ec85f621ee24d84ba29eeebbbc29ce40aac4 /runtime/syntax/lout.vim | |
parent | 7c578d3c3f501c0dd86c48aad6816a6ce6e3fc77 (diff) | |
download | vim-84f7235bdbcc58876869ba8047530ef60443061a.zip |
Updated runtime files. Add Dutch translations.
Diffstat (limited to 'runtime/syntax/lout.vim')
-rw-r--r-- | runtime/syntax/lout.vim | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/runtime/syntax/lout.vim b/runtime/syntax/lout.vim index 2a0a72c5b..9a34328ac 100644 --- a/runtime/syntax/lout.vim +++ b/runtime/syntax/lout.vim @@ -1,13 +1,21 @@ " Vim syntax file " Language: Lout " Maintainer: Christian V. J. Brüssow <cvjb@cvjb.de> -" Last Change: Son 22 Jun 2003 20:43:26 CEST +" Last Change: So 12 Feb 2012 15:15:03 CET " Filenames: *.lout,*.lt -" URL: http://www.cvjb.de/comp/vim/lout.vim -" $Id: lout.vim,v 1.1 2004/06/13 17:52:18 vimboss Exp $ +" URL: http://www.cvjb.de/comp/vim/lout.vim + +" $Id: lout.vim,v 1.4 2012/02/12 15:16:17 bruessow Exp $ " " Lout: Basser Lout document formatting system. +" Many Thanks to... +" +" 2012-02-12: +" Thilo Six <T.Six at gmx dot de> send a patch for cpoptions. +" See the discussion at http://thread.gmane.org/gmane.editors.vim.devel/32151 + + " For version 5.x: Clear all syntax items " For version 6.x: Quit when a syntax file was already loaded if version < 600 @@ -16,6 +24,9 @@ elseif exists("b:current_syntax") finish endif +let s:cpo_save=&cpo +set cpo&vim + " Lout is case sensitive syn case match @@ -136,4 +147,7 @@ endif let b:current_syntax = "lout" +let &cpo=s:cpo_save +unlet s:cpo_save + " vim:ts=8:sw=4:nocindent:smartindent: |