neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 16eed6e7663afccfe36fd8c0301927fd1858c5c8
parent de500095b1adc675999315e70307b3425dca089c
Author: Gregory Anders <8965202+gpanders@users.noreply.github.com>
Date:   Sun,  6 Nov 2022 14:31:54 -0700

fix: add lfs to luarc.json (#20979)

The sumneko lua language server keeps prompting me if I want to
"configure my workspace for lfs". These changes suppress that prompt.
Diffstat:
Mcontrib/luarc.json | 11+++++++----
1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/contrib/luarc.json b/contrib/luarc.json @@ -10,13 +10,16 @@ "before_each", "after_each", "setup", - "teardown" + "teardown", + "lfs" ] }, "workspace": { - "library": { - "runtime/lua": true - }, + "library": [ + "runtime/lua", + "${3rd}/lfs/library" + ], + "checkThirdParty": false, "maxPreload": 2000, "preloadFileSize": 1000 },