Mercurial > vim
annotate runtime/ftplugin/sh.vim @ 20607:9f5f64cc9720 v8.2.0857
patch 8.2.0857: GTK cell height can be a pixel too much
Commit: https://github.com/vim/vim/commit/5cd1cb9ff9d04979ff4cbc36ca8416d83364505d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 31 13:53:04 2020 +0200
patch 8.2.0857: GTK cell height can be a pixel too much
Problem: GTK cell height can be a pixel too much.
Solution: Subtract 3 instead of 1 when rounding. (closes https://github.com/vim/vim/issues/6168)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 31 May 2020 14:00:03 +0200 |
parents | 94601b379f38 |
children | c968191a8557 |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
2 " Language: sh | |
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 | |
16 | |
17 " Shell: thanks to Johannes Zellner | |
18 if exists("loaded_matchit") | |
19 let s:sol = '\%(;\s*\|^\s*\)\@<=' " start of line | |
20 let b:match_words = | |
21 \ s:sol.'if\>:' . s:sol.'elif\>:' . s:sol.'else\>:' . s:sol. 'fi\>,' . | |
22 \ s:sol.'\%(for\|while\)\>:' . s:sol. 'done\>,' . | |
23 \ s:sol.'case\>:' . s:sol. 'esac\>' | |
24 endif | |
25 | |
26 " Change the :browse e filter to primarily show shell-related files. | |
27 if has("gui_win32") | |
28 let b:browsefilter="Bourne Shell Scripts (*.sh)\t*.sh\n" . | |
29 \ "Korn Shell Scripts (*.ksh)\t*.ksh\n" . | |
30 \ "Bash Shell Scripts (*.bash)\t*.bash\n" . | |
31 \ "All Files (*.*)\t*.*\n" | |
32 endif | |
33 | |
34 " Undo the stuff we changed. | |
35 let b:undo_ftplugin = "setlocal cms< | unlet! b:browsefilter b:match_words" | |
36 | |
37 " Restore the saved compatibility options. | |
38 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
39 unlet s:save_cpo |