comparison runtime/ftplugin/abaqus.vim @ 3410:94601b379f38

Updated runtime files. Add Dutch translations.
author Bram Moolenaar <bram@vim.org>
date Sun, 11 Mar 2012 15:57:40 +0100
parents 7bc41231fbc7
children d1e4abe8342c
comparison
equal deleted inserted replaced
3409:b3ccae22bae7 3410:94601b379f38
1 " Vim filetype plugin file 1 " Vim filetype plugin file
2 " Language: Abaqus finite element input file (www.abaqus.com) 2 " Language: Abaqus finite element input file (www.abaqus.com)
3 " Maintainer: Carl Osterwisch <osterwischc@asme.org> 3 " Maintainer: Carl Osterwisch <osterwischc@asme.org>
4 " Last Change: 2008 Oct 5 4 " Last Change: 2012 Mar 11
5 5
6 " Only do this when not done yet for this buffer 6 " Only do this when not done yet for this buffer
7 if exists("b:did_ftplugin") | finish | endif 7 if exists("b:did_ftplugin") | finish | endif
8 8
9 " Don't load another plugin for this buffer 9 " Don't load another plugin for this buffer
85 let b:undo_ftplugin .= "|unmap <buffer> [[|unmap <buffer> ]]" 85 let b:undo_ftplugin .= "|unmap <buffer> [[|unmap <buffer> ]]"
86 \ . "|unmap <buffer> <LocalLeader><LocalLeader>" 86 \ . "|unmap <buffer> <LocalLeader><LocalLeader>"
87 87
88 " Restore saved compatibility options 88 " Restore saved compatibility options
89 let &cpoptions = s:cpo_save 89 let &cpoptions = s:cpo_save
90 unlet s:cpo_save