diff options
author | Jakob Schnitzer <mail@jakobschnitzer.de> | 2017-03-24 20:21:05 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-27 13:43:20 +0200 |
commit | 7bc37ffb22a84668bba5b2e3589c4c05ad43f7d0 (patch) | |
tree | 5934e78d1ad70956550df31298f571f9ff451890 /runtime | |
parent | 2b1398c31ea9ab9f4aaa40188f24d7e76a519e2d (diff) | |
download | rneovim-7bc37ffb22a84668bba5b2e3589c4c05ad43f7d0.tar.gz rneovim-7bc37ffb22a84668bba5b2e3589c4c05ad43f7d0.tar.bz2 rneovim-7bc37ffb22a84668bba5b2e3589c4c05ad43f7d0.zip |
terminal: global 'scrollback' #6352
Make the 'scrollback' option work like most other buffer-local options:
- `:set scrollback=x` sets the global and local value
- `:setglobal scrollback=x` sets only the global default
- new terminal buffers inherit the global
Normal buffers are still always -1, and :setlocal there is an error.
Closes #6337
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 1cb14f7771..c31ebf4ebc 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -398,20 +398,6 @@ command, not when assigning a value to an option with ":let". Note the maximum length of an expanded option is limited. How much depends on the system, mostly it is something like 256 or 1024 characters. - *Linux-backspace* - Note about Linux: By default the backspace key - produces CTRL-?, which is wrong. You can fix it by - putting this line in your rc.local: > - echo "keycode 14 = BackSpace" | loadkeys -< - *NetBSD-backspace* - Note about NetBSD: If your backspace doesn't produce - the right code, try this: > - xmodmap -e "keycode 22 = BackSpace" -< If this works, add this in your .Xmodmap file: > - keysym 22 = BackSpace -< You need to restart for this to take effect. - ============================================================================== 2. Automatically setting options *auto-setting* |