diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-12 18:38:12 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-12 21:42:09 -0500 |
commit | b650d2d8d90a371d73a25be2d46dd3c8c0d935ab (patch) | |
tree | 8ef67fe37151b215cbc0b3674e1dc8320c47831a /src/nvim/options.lua | |
parent | ea99cbc85ad937c79603461f8de046d744aa8dc3 (diff) | |
download | rneovim-b650d2d8d90a371d73a25be2d46dd3c8c0d935ab.tar.gz rneovim-b650d2d8d90a371d73a25be2d46dd3c8c0d935ab.tar.bz2 rneovim-b650d2d8d90a371d73a25be2d46dd3c8c0d935ab.zip |
vim-patch:8.2.2452: no completion for the 'filetype' option
Problem: No completion for the 'filetype' option.
Solution: Add filetype completion. (Martin Tournoij, closes vim/vim#7747)
https://github.com/vim/vim/commit/d5e8c92816f35ea1a9298084238a08f35958baa6
Diffstat (limited to 'src/nvim/options.lua')
-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 fe108ef1cc..f4c1ac9131 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -900,6 +900,7 @@ return { normal_fname_chars=true, vi_def=true, alloced=true, + expand=true, varname='p_ft', defaults={if_true={vi=""}} }, |