From 9565149634ec5e0fc9e740f4edb6cab26bf7fb6f Mon Sep 17 00:00:00 2001 From: Riley Bruins Date: Sat, 2 Nov 2024 11:23:37 -0700 Subject: [PATCH] chore: recognize busted functions Now writing indent tests is easier because the language server recognizes the necessary functions --- .luarc.json | 5 +++-- 1 file 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 },