Mercurial > vim
annotate runtime/ftplugin/awk.vim @ 14560:8413e66d00a1
patch 8.1.0293: checks for type of stack is cryptic
commit https://github.com/vim/vim/commit/4d77c65a9e57e1d1a459c44411930c7a892835fd
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 18 19:59:54 2018 +0200
patch 8.1.0293: checks for type of stack is cryptic
Problem: Checks for type of stack is cryptic.
Solution: Define IS_QF_STACK() and IS_LL_STACK(). (Yegappan Lakshmanan)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 18 Aug 2018 20:00:07 +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 |