annotate runtime/ftplugin/hostsaccess.vim @ 17298:3d90ae62deca
v8.1.1648
patch 8.1.1648: MS-Windows: build error with normal feaures
commit https://github.com/vim/vim/commit/3f3e954d9676e374f222a18786c78e50af5041cb
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 7 20:30:48 2019 +0200
patch 8.1.1648: MS-Windows: build error with normal feaures
Problem: MS-Windows: build error with normal feaures.
Solution: Adjust #ifdef for find_word_under_cursor().
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 07 Jul 2019 20:45:04 +0200 |
parents |
1218c5353e2b |
children |
|
rev |
line source |
1698
|
1 " Vim filetype plugin file
|
11062
|
2 " Language: hosts_access(5) control file
|
|
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2008-07-09
|
1698
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 let s:cpo_save = &cpo
|
|
12 set cpo&vim
|
|
13
|
|
14 let b:undo_ftplugin = "setl com< cms< fo<"
|
|
15
|
|
16 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
|
|
17
|
|
18 let &cpo = s:cpo_save
|
|
19 unlet s:cpo_save
|