vim-patch:9.1.1779: completion: 'autocomplete' cannot be enabled per buffer (#35853)

Problem:  completion: 'autocomplete' cannot be enabled per buffer
          (Tomasz N)
Solution: Make 'autocomplete' global or local to buffer (Girish Palya)

fixes: vim/vim#18320
closes: vim/vim#18333

0208b3e80a

Co-authored-by: Girish Palya <girishji@gmail.com>
This commit is contained in:
zeertzjq
2025-09-21 08:56:38 +08:00
committed by GitHub
parent 6b7fc9d37f
commit a70997442e
11 changed files with 31 additions and 14 deletions

View File

@@ -117,6 +117,8 @@ vim.go.acd = vim.go.autochdir
--- @type boolean
vim.o.autocomplete = false
vim.o.ac = vim.o.autocomplete
vim.bo.autocomplete = vim.o.autocomplete
vim.bo.ac = vim.bo.autocomplete
vim.go.autocomplete = vim.o.autocomplete
vim.go.ac = vim.go.autocomplete