Mercurial > vim
annotate runtime/ftplugin/nsis.vim @ 11177:76fb679a310e v8.0.0475
patch 8.0.0475: not enough testing for the client-server feature
commit https://github.com/vim/vim/commit/7416f3e73ab2c4e7ae3adc2ff6e70234f7d40d2e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 18 18:10:13 2017 +0100
patch 8.0.0475: not enough testing for the client-server feature
Problem: Not enough testing for the client-server feature.
Solution: Add more tests. Add the remote_startserver() function. Fix that
a locally evaluated expression uses function-local variables.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 18 Mar 2017 18:15:04 +0100 |
parents | 1218c5353e2b |
children | 371ceeebbdaa |
rev | line source |
---|---|
1698 | 1 " Vim ftplugin file |
11062 | 2 " Language: NSIS script |
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
4 " Latest Revision: 2008-07-09 | |
1698 | 5 |
6 let s:cpo_save = &cpo | |
7 set cpo&vim | |
8 | |
9 if exists("b:did_ftplugin") | |
10 finish | |
11 endif | |
12 let b:did_ftplugin = 1 | |
13 | |
14 let b:undo_ftplugin = "setl com< cms< fo< def< inc<" | |
15 | |
16 setlocal comments=s1:/*,mb:*,ex:*/,b:#,:; commentstring=;\ %s | |
17 setlocal formatoptions-=t formatoptions+=croql | |
18 setlocal define=^\\s*!define\\%(\\%(utc\\)\\=date\\|math\\)\\= | |
19 setlocal include=^\\s*!include\\%(/NONFATAL\\)\\= | |
20 | |
21 let &cpo = s:cpo_save | |
22 unlet s:cpo_save |