diff options
author | Daniel Hahler <git@thequod.de> | 2017-01-12 22:20:44 +0100 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2017-01-13 23:40:59 +0100 |
commit | a0b33b333ee46b87d62ab1a8d8d515e83fbbe635 (patch) | |
tree | 38348827c773a2372629cbdacd20bfffaf8982b2 /scripts/genoptions.lua | |
parent | f68663542037aaa4ae954aacae7adf2e88b151d5 (diff) | |
download | rneovim-a0b33b333ee46b87d62ab1a8d8d515e83fbbe635.tar.gz rneovim-a0b33b333ee46b87d62ab1a8d8d515e83fbbe635.tar.bz2 rneovim-a0b33b333ee46b87d62ab1a8d8d515e83fbbe635.zip |
vim-patch:8.0.0121
Problem: Setting 'cursorline' changes the curswant column. (Daniel Hahler)
Solution: Add the P_RWINONLY flag. (closes vim/vim#1297)
https://github.com/vim/vim/commit/a2477fd3490c1166522631eee53c57d34321086a
Diffstat (limited to 'scripts/genoptions.lua')
-rw-r--r-- | scripts/genoptions.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/genoptions.lua b/scripts/genoptions.lua index 9f7d94969d..9d7f235a3b 100644 --- a/scripts/genoptions.lua +++ b/scripts/genoptions.lua @@ -31,6 +31,7 @@ local type_flags={ local redraw_flags={ statuslines='P_RSTAT', current_window='P_RWIN', + current_window_only='P_RWINONLY', current_buffer='P_RBUF', all_windows='P_RALL', everything='P_RCLR', |