annotate runtime/ftplugin/ld.vim @ 13686:61979a75435a v8.0.1715

patch 8.0.1715: terminal buffer can be 1 more than 'terminalscroll' lines commit https://github.com/vim/vim/commit/8c94a549051cc4d4cbb8cabd321724a85fe40c23 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 15 12:55:13 2018 +0200 patch 8.0.1715: terminal buffer can be 1 more than 'terminalscroll' lines Problem: Terminal buffer can be 1 more than 'terminalscroll' lines. Solution: Change > to >=.
author Christian Brabandt <cb@256bit.org>
date Sun, 15 Apr 2018 13:00:05 +0200
parents 1218c5353e2b
children 7c7432a53a6c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 1698
diff changeset
2 " Language: ld(1) script
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 1698
diff changeset
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 1698
diff changeset
4 " Latest Revision: 2008-07-09
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
5
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
6 if exists("b:did_ftplugin")
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
7 finish
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
8 endif
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
9 let b:did_ftplugin = 1
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
10
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
11 let s:cpo_save = &cpo
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
12 set cpo&vim
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
13
389
4fe8e1a7758e updated for version 7.0102
vimboss
parents: 375
diff changeset
14 let b:undo_ftplugin = "setl com< cms< inc< fo<"
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
15
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
16 setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*%s*/ include=^\\s*INCLUDE
389
4fe8e1a7758e updated for version 7.0102
vimboss
parents: 375
diff changeset
17 setlocal formatoptions-=t formatoptions+=croql
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
18
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
19 let &cpo = s:cpo_save
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 839
diff changeset
20 unlet s:cpo_save