Mercurial > vim
annotate runtime/ftplugin/dtd.vim @ 16718:9aa87f5aab55 v8.1.1361
patch 8.1.1361: Python setuptools don't work with Python 3
commit https://github.com/vim/vim/commit/0b0ad35c339b8ad156df493bebeb77e02b32b120
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon May 20 21:52:45 2019 +0200
patch 8.1.1361: Python setuptools don't work with Python 3
Problem: Python setuptools don't work with Python 3.
Solution: Add dummy implementation for find_module. (Joel Frederico,
closes #4402, closes #3984
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 20 May 2019 22:00:05 +0200 |
parents | 94601b379f38 |
children | c968191a8557 |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
2 " Language: dtd | |
2034 | 3 " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net> |
4 " Last Changed: 20 Jan 2009 | |
5 " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin | |
7 | 6 |
7 if exists("b:did_ftplugin") | finish | endif | |
8 let b:did_ftplugin = 1 | |
9 | |
10 " Make sure the continuation lines below do not cause problems in | |
11 " compatibility mode. | |
12 let s:save_cpo = &cpo | |
13 set cpo-=C | |
14 | |
15 setlocal commentstring=<!--%s--> | |
1698 | 16 setlocal comments=s:<!--,m:\ \ \ \ \ ,e:--> |
17 | |
18 setlocal formatoptions-=t | |
19 if !exists("g:ft_dtd_autocomment") || (g:ft_dtd_autocomment == 1) | |
20 setlocal formatoptions+=croql | |
21 endif | |
7 | 22 |
23 if exists("loaded_matchit") | |
24 let b:match_words = '<!--:-->,<!:>' | |
25 endif | |
26 | |
27 " Change the :browse e filter to primarily show Java-related files. | |
28 if has("gui_win32") | |
29 let b:browsefilter="DTD Files (*.dtd)\t*.dtd\n" . | |
30 \ "XML Files (*.xml)\t*.xml\n" . | |
31 \ "All Files (*.*)\t*.*\n" | |
32 endif | |
33 | |
34 " Undo the stuff we changed. | |
1698 | 35 let b:undo_ftplugin = "setlocal commentstring< comments< formatoptions<" . |
7 | 36 \ " | unlet! b:matchwords b:browsefilter" |
37 | |
38 " Restore the saved compatibility options. | |
39 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
40 unlet s:save_cpo |