comparison runtime/syntax/nroff.vim @ 3312:b7811ab264bf v7.3.423

updated for version 7.3.423 Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
author Bram Moolenaar <bram@vim.org>
date Sat, 04 Feb 2012 21:59:01 +0100
parents dc8197342755
children 43efa4f5a8ea
comparison
equal deleted inserted replaced
3311:54d1536a1c8b 3312:b7811ab264bf
1 " VIM syntax file 1 " VIM syntax file
2 " Language: nroff/groff 2 " Language: nroff/groff
3 " Maintainer: Alejandro López-Valencia <dradul@yahoo.com> 3 " Maintainer: Pedro Alejandro López-Valencia <palopezv@gmail.com>
4 " URL: http://dradul.tripod.com/vim 4 " URL: http://vorbote.wordpress.com/
5 " Last Change: 2006 Apr 14 5 " Last Change: 2012 Feb 2
6 " 6 "
7 " {{{1 Acknowledgements 7 " {{{1 Acknowledgements
8 " 8 "
9 " ACKNOWLEDGEMENTS: 9 " ACKNOWLEDGEMENTS:
10 " 10 "
28 if version < 600 28 if version < 600
29 syntax clear 29 syntax clear
30 elseif exists("b:current_syntax") 30 elseif exists("b:current_syntax")
31 finish 31 finish
32 endif 32 endif
33
34 let s:cpo_save = &cpo
35 set cpo&vim
33 36
34 " 37 "
35 " {{{1 plugin settings... 38 " {{{1 plugin settings...
36 " 39 "
37 " {{{2 enable spacing error highlighting 40 " {{{2 enable spacing error highlighting
254 257
255 endif 258 endif
256 259
257 let b:current_syntax = "nroff" 260 let b:current_syntax = "nroff"
258 261
262 let &cpo = s:cpo_save
263 unlet s:cpo_save
259 " vim600: set fdm=marker fdl=2: 264 " vim600: set fdm=marker fdl=2: