annotate runtime/ftplugin/swift.vim @ 23386:3105546b941f
v8.2.2236
patch 8.2.2236: 'scroll' option can change when setting the statusline
Commit: https://github.com/vim/vim/commit/746670604a60cb0356b56c112ffb6d297c679099
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 28 15:41:41 2020 +0100
patch 8.2.2236: 'scroll' option can change when setting the statusline
Problem: 'scroll' option can change when setting the statusline or tabline
but the option context is not updated.
Solution: Update the script context when the scroll option is changed as a
side effect. (Christian Brabandt, closes #7533)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 28 Dec 2020 15:45:03 +0100 |
parents |
bceeded72898 |
children |
e2e2cc5d0856 |
rev |
line source |
19180
|
1 " This source file is part of the Swift.org open source project
|
|
2 "
|
|
3 " Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors
|
|
4 " Licensed under Apache License v2.0 with Runtime Library Exception
|
|
5 "
|
|
6 " See https://swift.org/LICENSE.txt for license information
|
|
7 " See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
8 "
|
|
9 " Vim maintainer: Emir SARI <bitigchi@me.com>
|
|
10
|
|
11 setlocal comments=s1:/*,mb:*,ex:*/,:///,://
|
|
12 setlocal expandtab
|
19721
|
13 setlocal sw=4 sts=4
|
19180
|
14 setlocal smartindent
|