ci: add ${3rd}/luv/library
This commit is contained in:
@@ -3,7 +3,8 @@
|
|||||||
"runtime.version" : "Lua 5.1",
|
"runtime.version" : "Lua 5.1",
|
||||||
"workspace": {
|
"workspace": {
|
||||||
"library": [
|
"library": [
|
||||||
"$VIMRUNTIME/lua/vim/lsp"
|
"$VIMRUNTIME/lua/vim/lsp",
|
||||||
|
"${3rd}/luv/library"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"diagnostics": {
|
"diagnostics": {
|
||||||
|
|||||||
@@ -2,11 +2,6 @@ local log = require "nvim-tree.log"
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
|
|
||||||
-- TODO add "${3rd}/luv/library" to "workspace.library"
|
|
||||||
---@class uv.uv_handle_t: table
|
|
||||||
---@class uv.uv_stream_t: uv.uv_handle_t
|
|
||||||
---@class uv.uv_pipe_t: uv.uv_stream_t
|
|
||||||
|
|
||||||
---@class Runner
|
---@class Runner
|
||||||
local Runner = {}
|
local Runner = {}
|
||||||
Runner.__index = Runner
|
Runner.__index = Runner
|
||||||
|
|||||||
@@ -1,9 +1,5 @@
|
|||||||
---@meta
|
---@meta
|
||||||
|
|
||||||
-- TODO add "${3rd}/luv/library" to "workspace.library"
|
|
||||||
---@class uv.uv_req_t: table
|
|
||||||
---@class uv.uv_fs_t: uv.uv_req_t
|
|
||||||
|
|
||||||
---@class ParentNode
|
---@class ParentNode
|
||||||
---@field name string
|
---@field name string
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,11 @@
|
|||||||
# Performs a lua-language-server check on all files.
|
# Performs a lua-language-server check on all files.
|
||||||
# luals-out/check.json will be produced on any issues, returning 1.
|
# luals-out/check.json will be produced on any issues, returning 1.
|
||||||
# Outputs only check.json to stdout, all other messages to stderr, to allow jq etc.
|
# Outputs only check.json to stdout, all other messages to stderr, to allow jq etc.
|
||||||
|
# $VIMRUNTIME specifies neovim runtime path, defaults to "/usr/share/nvim/runtime" if unset.
|
||||||
|
|
||||||
|
if [ -z "${VIMRUNTIME}" ]; then
|
||||||
|
export VIMRUNTIME="/usr/share/nvim/runtime"
|
||||||
|
fi
|
||||||
|
|
||||||
DIR_SRC="lua"
|
DIR_SRC="lua"
|
||||||
DIR_OUT="luals-out"
|
DIR_OUT="luals-out"
|
||||||
|
|||||||
Reference in New Issue
Block a user