diff options
| author | Riley Bruins <ribru17@hotmail.com> | 2024-11-02 11:23:37 -0700 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2024-11-02 19:46:21 +0100 |
| commit | 9565149634ec5e0fc9e740f4edb6cab26bf7fb6f (patch) | |
| tree | 2e67146fbcd4d6c9a1eb9a673835ed6d20632b6c /.luarc.json | |
| parent | bot(lockfile): update awk, desktop, groovy, nix, ruby, xresources (diff) | |
| download | nvim-treesitter-9565149634ec5e0fc9e740f4edb6cab26bf7fb6f.tar nvim-treesitter-9565149634ec5e0fc9e740f4edb6cab26bf7fb6f.tar.gz nvim-treesitter-9565149634ec5e0fc9e740f4edb6cab26bf7fb6f.tar.bz2 nvim-treesitter-9565149634ec5e0fc9e740f4edb6cab26bf7fb6f.tar.lz nvim-treesitter-9565149634ec5e0fc9e740f4edb6cab26bf7fb6f.tar.xz nvim-treesitter-9565149634ec5e0fc9e740f4edb6cab26bf7fb6f.tar.zst nvim-treesitter-9565149634ec5e0fc9e740f4edb6cab26bf7fb6f.zip | |
chore: recognize busted functions
Now writing indent tests is easier because the language server
recognizes the necessary functions
Diffstat (limited to '.luarc.json')
| -rw-r--r-- | .luarc.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.luarc.json b/.luarc.json index 8dc060501..5b5aa24b2 100644 --- a/.luarc.json +++ b/.luarc.json @@ -1,13 +1,14 @@ { "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json", "runtime": { - "version": "LuaJIT" + "version": "LuaJIT" }, "workspace": { "library": [ "lua", "$VIMRUNTIME", - "${3rd}/luv/library" + "${3rd}/luv/library", + "${3rd}/busted/library" ], "checkThirdParty": false }, |
