Mercurial > vim
annotate runtime/ftplugin/awk.vim @ 11920:b7ae697d13e6
Added tag v8.0.0839 for changeset cca097489de57e36e34d673c96ae8ab73cfc3687
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 01 Aug 2017 22:30:04 +0200 |
parents | c391bfbdb452 |
children | a3bb84cd0f59 |
rev | line source |
---|---|
10895 | 1 " Vim filetype plugin |
2 " Language: awk, nawk, gawk, mawk | |
3 " Maintainer: Antonio Colombo <azc100@gmail.com> | |
4 " Last Change: 2017 Feb 17 | |
5 | |
6 " This plugin was prepared by Mark Sikora | |
7 | |
8 " Only do this when not done yet for this buffer | |
9 if exists("b:did_ftplugin") | |
10 finish | |
11 endif | |
12 | |
13 " Don't load another plugin for this buffer | |
14 let b:did_ftplugin = 1 | |
15 | |
16 let b:undo_ftplugin = "setl commentstring<" | |
17 | |
18 setlocal commentstring=#\ %s |