diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-30 15:49:27 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-30 15:55:18 -0500 |
commit | 3ea77f50cbf132bda9c18164f3b5712e15e228c8 (patch) | |
tree | f84b5811d29e231ccad62df181561410de94f014 /src | |
parent | 52163c66b936c21f00832af19fb438b6db6f9766 (diff) | |
download | rneovim-3ea77f50cbf132bda9c18164f3b5712e15e228c8.tar.gz rneovim-3ea77f50cbf132bda9c18164f3b5712e15e228c8.tar.bz2 rneovim-3ea77f50cbf132bda9c18164f3b5712e15e228c8.zip |
vim-patch:8.1.0172: 'viminfofile' option does not behave like a file name
Problem: 'viminfofile' option does not behave like a file name.
Solution: Add the P_EXPAND flag. (closes vim/vim#3178)
https://github.com/vim/vim/commit/c229e54a69468722ca2449e807e90445b7479659
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/options.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 64a09dc2b4..df2bfbce34 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2313,6 +2313,7 @@ return { deny_duplicates=true, vi_def=true, secure=true, + expand=true, varname='p_shadafile', defaults={if_true={vi=""}} }, |