annotate runtime/ftplugin/dosini.vim @ 16293:c2b2201045e3
v8.1.1151
patch 8.1.1151: build fails when using shadow directory
commit https://github.com/vim/vim/commit/679beba8007b804be210ef118bd23a38cb803ef6
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 11 16:21:33 2019 +0200
patch 8.1.1151: build fails when using shadow directory
Problem: Build fails when using shadow directory.
Solution: Link the desktop.in files.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 11 Apr 2019 16:30:05 +0200 |
parents |
1218c5353e2b |
children |
11b656e74444 |
rev |
line source |
1624
|
1 " Vim filetype plugin file
|
11062
|
2 " Language: Configuration File (ini file) for MSDOS/MS Windows
|
|
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2008-07-09
|
1624
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
1698
|
11 let s:cpo_save = &cpo
|
|
12 set cpo&vim
|
|
13
|
1624
|
14 let b:undo_ftplugin = "setl com< cms< fo<"
|
|
15
|
|
16 setlocal comments=:; commentstring=;\ %s formatoptions-=t formatoptions+=croql
|
1698
|
17
|
|
18 let &cpo = s:cpo_save
|
|
19 unlet s:cpo_save
|