diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2018-08-28 02:51:22 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-08-28 08:51:22 +0200 |
commit | 10e885bdfc42322dee3312b4373dc8f6653d2412 (patch) | |
tree | 5f65e7ddc16afefac87df3fbd27aaec0d6ac6cc3 /src/nvim/options.lua | |
parent | dee0d7f4e9b8a681cf4f3761d886081f3b851b7a (diff) | |
download | rneovim-10e885bdfc42322dee3312b4373dc8f6653d2412.tar.gz rneovim-10e885bdfc42322dee3312b4373dc8f6653d2412.tar.bz2 rneovim-10e885bdfc42322dee3312b4373dc8f6653d2412.zip |
vim-patch:8.0.1001: setting 'encoding' makes 'printheader' invalid (#8925)
Problem: Setting 'encoding' makes 'printheader' invalid.
Solution: Do not translate the default value of 'printheader'. (Yasuhiro
Matsumoto, closes vim/vim#2026)
https://github.com/vim/vim/commit/0903d56f5ca69bb1fa0bbb00ed2a3d9c4d06ddb4
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 7cd11e5c31..bd816f2ca4 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1774,7 +1774,7 @@ return { gettext=true, vi_def=true, varname='p_header', - defaults={if_true={vi=N_("%<%f%h%m%=Page %N")}} + defaults={if_true={vi="%<%f%h%m%=Page %N"}} }, { full_name='printmbcharset', abbreviation='pmbcs', |