Update generated neovim config
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,13 @@
|
||||
" Vim filetype plugin for SnipMate snippets (.snippets files)
|
||||
|
||||
if exists("b:did_ftplugin")
|
||||
finish
|
||||
endif
|
||||
let b:did_ftplugin = 1
|
||||
|
||||
let b:undo_ftplugin = "setl cms< fdm< fde<"
|
||||
|
||||
setlocal foldmethod=expr foldexpr=getline(v:lnum)=~'^#\\\|^e\\\|^p'?0:getline(v:lnum)!~'^\\t\\\|^\ \\\|^$'?'>1':1
|
||||
|
||||
setlocal commentstring=#\ %s
|
||||
setlocal nospell
|
||||
@ -0,0 +1,37 @@
|
||||
local git_ref = 'v2.3.0'
|
||||
local modrev = '2.3.0'
|
||||
local specrev = '1'
|
||||
|
||||
local repo_url = 'https://github.com/L3MON4D3/LuaSnip'
|
||||
|
||||
rockspec_format = '3.0'
|
||||
package = 'luasnip'
|
||||
version = modrev ..'-'.. specrev
|
||||
|
||||
description = {
|
||||
summary = 'Snippet Engine for Neovim written in Lua.',
|
||||
detailed = '',
|
||||
labels = { 'lua', 'neovim', 'snippet-engine', 'snippets' } ,
|
||||
homepage = 'https://github.com/L3MON4D3/LuaSnip',
|
||||
license = 'Apache-2.0'
|
||||
}
|
||||
|
||||
dependencies = { 'lua >= 5.1', 'jsregexp >= 0.0.5, <= 0.0.7' }
|
||||
|
||||
test_dependencies = { }
|
||||
|
||||
source = {
|
||||
url = repo_url .. '/archive/' .. git_ref .. '.zip',
|
||||
dir = 'LuaSnip-' .. '2.3.0',
|
||||
}
|
||||
|
||||
if modrev == 'scm' or modrev == 'dev' then
|
||||
source = {
|
||||
url = repo_url:gsub('https', 'git')
|
||||
}
|
||||
end
|
||||
|
||||
build = {
|
||||
type = 'builtin',
|
||||
copy_directories = { 'doc', 'ftplugin', 'plugin', 'syntax' } ,
|
||||
}
|
||||
@ -0,0 +1,90 @@
|
||||
vim.filetype.add({
|
||||
extension = { snippets = "snippets" },
|
||||
})
|
||||
|
||||
local function silent_map(mode, lhs, rhs, desc)
|
||||
vim.keymap.set(mode, lhs, rhs, { silent = true, desc = desc or "" })
|
||||
end
|
||||
|
||||
silent_map("i", "<Plug>luasnip-expand-or-jump", function()
|
||||
require("luasnip").expand_or_jump()
|
||||
end, "LuaSnip: Expand or jump in the current snippet")
|
||||
silent_map("i", "<Plug>luasnip-expand-snippet", function()
|
||||
require("luasnip").expand()
|
||||
end, "LuaSnip: Expand the current snippet")
|
||||
silent_map("i", "<Plug>luasnip-next-choice", function()
|
||||
require("luasnip").change_choice(1)
|
||||
end, "LuaSnip: Change to the next choice from the choiceNode")
|
||||
silent_map("i", "<Plug>luasnip-prev-choice", function()
|
||||
require("luasnip").change_choice(-1)
|
||||
end, "LuaSnip: Change to the previous choice from the choiceNode")
|
||||
silent_map("i", "<Plug>luasnip-jump-next", function()
|
||||
require("luasnip").jump(1)
|
||||
end, "LuaSnip: Jump to the next node")
|
||||
silent_map("i", "<Plug>luasnip-jump-prev", function()
|
||||
require("luasnip").jump(-1)
|
||||
end, "LuaSnip: Jump to the previous node")
|
||||
|
||||
silent_map("n", "<Plug>luasnip-delete-check", function()
|
||||
require("luasnip").unlink_current_if_deleted()
|
||||
end, "LuaSnip: Removes current snippet from jumplist")
|
||||
silent_map("!", "<Plug>luasnip-delete-check", function()
|
||||
require("luasnip").unlink_current_if_deleted()
|
||||
end, "LuaSnip: Removes current snippet from jumplist")
|
||||
|
||||
silent_map("", "<Plug>luasnip-expand-repeat", function()
|
||||
require("luasnip").expand_repeat()
|
||||
end, "LuaSnip: Repeat last node expansion")
|
||||
silent_map("!", "<Plug>luasnip-expand-repeat", function()
|
||||
require("luasnip").expand_repeat()
|
||||
end, "LuaSnip: Repeat last node expansion")
|
||||
|
||||
silent_map("s", "<Plug>luasnip-expand-or-jump", function()
|
||||
require("luasnip").expand_or_jump()
|
||||
end, "LuaSnip: Expand or jump in the current snippet")
|
||||
silent_map("s", "<Plug>luasnip-expand-snippet", function()
|
||||
require("luasnip").expand()
|
||||
end, "LuaSnip: Expand the current snippet")
|
||||
silent_map("s", "<Plug>luasnip-next-choice", function()
|
||||
require("luasnip").change_choice(1)
|
||||
end, "LuaSnip: Change to the next choice from the choiceNode")
|
||||
silent_map("s", "<Plug>luasnip-prev-choice", function()
|
||||
require("luasnip").change_choice(-1)
|
||||
end, "LuaSnip: Change to the previous choice from the choiceNode")
|
||||
silent_map("s", "<Plug>luasnip-jump-next", function()
|
||||
require("luasnip").jump(1)
|
||||
end, "LuaSnip: Jump to the next node")
|
||||
silent_map("s", "<Plug>luasnip-jump-prev", function()
|
||||
require("luasnip").jump(-1)
|
||||
end, "LuaSnip: Jump to the previous node")
|
||||
|
||||
vim.api.nvim_create_user_command("LuaSnipUnlinkCurrent", function()
|
||||
require("luasnip").unlink_current()
|
||||
end, { force = true })
|
||||
|
||||
--stylua: ignore
|
||||
vim.api.nvim_create_user_command("LuaSnipListAvailable", function()
|
||||
(
|
||||
(
|
||||
vim.version
|
||||
and type(vim.version) == "table"
|
||||
and (
|
||||
((vim.version().major == 0) and (vim.version().minor >= 9))
|
||||
or (vim.version().major > 0) )
|
||||
) and vim.print
|
||||
or vim.pretty_print
|
||||
)(require("luasnip").available())
|
||||
end, { force = true })
|
||||
|
||||
require("luasnip.config")._setup()
|
||||
|
||||
-- register these during startup so lazy_load will also load filetypes whose
|
||||
-- events fired only before lazy_load is actually called.
|
||||
-- (BufWinEnter -> lazy_load() wouldn't load any files without these).
|
||||
vim.api.nvim_create_augroup("_luasnip_lazy_load", {})
|
||||
vim.api.nvim_create_autocmd({ "BufWinEnter", "FileType" }, {
|
||||
callback = function(event)
|
||||
require("luasnip.loaders").load_lazy_loaded(tonumber(event.buf))
|
||||
end,
|
||||
group = "_luasnip_lazy_load",
|
||||
})
|
||||
@ -0,0 +1,23 @@
|
||||
function! luasnip#expandable()
|
||||
return luaeval('require("luasnip").expandable()')
|
||||
endfunction
|
||||
|
||||
function! luasnip#expand_or_jumpable()
|
||||
return luaeval('require("luasnip").expand_or_jumpable()')
|
||||
endfunction
|
||||
|
||||
function! luasnip#expand_or_locally_jumpable()
|
||||
return luaeval('require("luasnip").expand_or_locally_jumpable()')
|
||||
endfunction
|
||||
|
||||
function! luasnip#locally_jumpable(direction)
|
||||
return luaeval('require("luasnip").locally_jumpable(_A)', a:direction)
|
||||
endfunction
|
||||
|
||||
function! luasnip#jumpable(direction)
|
||||
return luaeval('require("luasnip").jumpable(_A)', a:direction)
|
||||
endfunction
|
||||
|
||||
function! luasnip#choice_active()
|
||||
return luaeval('require("luasnip").choice_active()')
|
||||
endfunction
|
||||
@ -0,0 +1,116 @@
|
||||
rock_manifest = {
|
||||
doc = {
|
||||
["luasnip.txt"] = "ab6768dea4b13a6eec600fa0b60b72c9"
|
||||
},
|
||||
ftplugin = {
|
||||
["snippets.vim"] = "f8c461751ad539fc449c15a85bf70be4"
|
||||
},
|
||||
lua = {
|
||||
luasnip = {
|
||||
["_types.lua"] = "a1b1fc45d496f8ece3e17dc3541e5f93",
|
||||
["config.lua"] = "1bb0edf593b14b243b116d70cbb605c9",
|
||||
["default_config.lua"] = "51eea9c217eed18af81d580129c70461",
|
||||
extras = {
|
||||
["_extra_types.lua"] = "b8f4a120d5abe22f0112efdcae358817",
|
||||
["_lambda.lua"] = "e94a2ad0606ed3c4276a573d4e7ab205",
|
||||
["_parser_combinator.lua"] = "bacc166557d1b5f9f03aff25a56bc801",
|
||||
["_treesitter.lua"] = "d9fb19599b9d95edab033fdda0684c32",
|
||||
conditions = {
|
||||
["expand.lua"] = "35c3ab55ec8e9916ed7cde31cc807b08",
|
||||
["init.lua"] = "12f7e4b6fd6b5796c36ce61db5844efd",
|
||||
["show.lua"] = "0cd4059f6ba5582f409ced580e9fef13"
|
||||
},
|
||||
["expand_conditions.lua"] = "6ea7479cea2e5fac95a2045a6a283d4b",
|
||||
["filetype_functions.lua"] = "bdab365ff7bd2d7d148fdc6b3b78d9b4",
|
||||
["fmt.lua"] = "014768af82d3e7e58437e41335553eb6",
|
||||
["init.lua"] = "560335e3043e97a826fc8aee4b250fbc",
|
||||
["otf.lua"] = "8a95cdb7b582497542069bdd0886776b",
|
||||
["postfix.lua"] = "5e94359e6642b52d8ef6c9df3a90e167",
|
||||
["select_choice.lua"] = "8c924f05ee0d55ab9b0d9e5c603e1a52",
|
||||
["snip_location.lua"] = "bd0f8a7f1c61f6a001fa5781c15839d5",
|
||||
["snippet_list.lua"] = "fe61183934e0bb966b83461febdd1dcb",
|
||||
["treesitter_postfix.lua"] = "42a5143ad3c647d292b2183566fd6776"
|
||||
},
|
||||
["health.lua"] = "b6bd288f728f6897674347ad46917a5b",
|
||||
["init.lua"] = "96451aae98dbaf3ece53873298479172",
|
||||
loaders = {
|
||||
["data.lua"] = "498490d7dfcf2f0374b0d20f429ba6fb",
|
||||
["from_lua.lua"] = "78d20ec3694e16581e21ed4948c26385",
|
||||
["from_snipmate.lua"] = "93e1cdc6e024549d9aa6bc917325de24",
|
||||
["from_vscode.lua"] = "8425d97d59a85f5681207dac0461618d",
|
||||
["fs_watchers.lua"] = "b36b9f60988b568602350c41b032f9e6",
|
||||
["init.lua"] = "d470bc3c7bd4690199cf1c0d214782cf",
|
||||
["snippet_cache.lua"] = "e2b5cf9a46713fb3f108067100e77e0c",
|
||||
["types.lua"] = "89e18f0f21c1e77be74c1cbe85757d11",
|
||||
["util.lua"] = "904465f8563d532168be374ca9203c6f"
|
||||
},
|
||||
nodes = {
|
||||
["absolute_indexer.lua"] = "efa73978bd91f2d90f2fc9ef53a9c38c",
|
||||
["choiceNode.lua"] = "c63618056997ec5aec6524fffff7f2fb",
|
||||
["duplicate.lua"] = "454e20ad45dbf371aa7d09aa21861f1c",
|
||||
["dynamicNode.lua"] = "28f4e7a46281dc3a2af0875ffc5ff58c",
|
||||
["functionNode.lua"] = "cf7cb4efb677a139618fd9255734873e",
|
||||
["insertNode.lua"] = "a25a723746e7ab5973901855de1d1f11",
|
||||
["key_indexer.lua"] = "d1c4887dfc10501f09b7851aea25f842",
|
||||
["multiSnippet.lua"] = "2eab1e75c5ee87096f03db006da31844",
|
||||
["node.lua"] = "c1d2f45dd25dcf5c1574ff63e0f9e88c",
|
||||
["restoreNode.lua"] = "9613ce23458968aa12737365dd302be7",
|
||||
["snippet.lua"] = "d6a31a62f45a460bc642822b6d0244f7",
|
||||
["snippetProxy.lua"] = "68262858f0f9a20a41640d5a11c43481",
|
||||
["textNode.lua"] = "c22395ab8305a581f021982cd88e2931",
|
||||
util = {
|
||||
["trig_engines.lua"] = "a023c5ca92103478cbf40b7ffe2de903"
|
||||
},
|
||||
["util.lua"] = "a6be1172f1b37f2018460900b0ab987d"
|
||||
},
|
||||
session = {
|
||||
["enqueueable_operations.lua"] = "2e4f57314f0573601e35943f56e8d4d8",
|
||||
["init.lua"] = "213d2ea8110e267278d62f5853151ceb",
|
||||
snippet_collection = {
|
||||
["init.lua"] = "2d5015eb7cb5717f5aa44fdeebffbe59",
|
||||
["source.lua"] = "17f2f0c590d4deb57ae0e7af20c153ec"
|
||||
}
|
||||
},
|
||||
["snippets.lua"] = "d41d8cd98f00b204e9800998ecf8427e",
|
||||
util = {
|
||||
["_builtin_vars.lua"] = "cb7e73099c5711556f8df8821ca4a182",
|
||||
["auto_table.lua"] = "f9c5f84a99e71df229c4b6506a447727",
|
||||
["dict.lua"] = "83d98b784cfe6ab28c1d3727e7220110",
|
||||
["directed_graph.lua"] = "7eb06677cf726e6be7d64d470660677c",
|
||||
["environ.lua"] = "61b0b01947a335f749e854f039ec77ac",
|
||||
["events.lua"] = "cdac0c08202f1295a0bd9f5ee5909b3b",
|
||||
["ext_opts.lua"] = "55f3ee33870b070d50c3eae516b4724a",
|
||||
["extend_decorator.lua"] = "07576b8535b2729c9d70f5ba5b036a92",
|
||||
["functions.lua"] = "86ccff508ce6b6eeefc455308e7d4994",
|
||||
["jsonc.lua"] = "94fbde2a919a24f3957d004aaf7d136d",
|
||||
["jsregexp.lua"] = "59eb40a43fa328e82b086863dcbfa626",
|
||||
["lazy_table.lua"] = "7b0f31805982e74c3e693fd60ad42ec2",
|
||||
["log.lua"] = "ffe073da229ae489cc72e576c0ab6bee",
|
||||
["mark.lua"] = "135f7a32a6f1031ea0eb80688997f3d3",
|
||||
parser = {
|
||||
["ast_parser.lua"] = "230087c74af6009d8a858259808f3e51",
|
||||
["ast_utils.lua"] = "7013bc099f5ed408c4cd49b29e4ce63c",
|
||||
["init.lua"] = "5ae80471a9893a45b12b77a35ecc8d81",
|
||||
["neovim_ast.lua"] = "08e136ffd26023ef3172ec2aed4ad2e9",
|
||||
["neovim_parser.lua"] = "c25f144947bceed6036e3d40b70bdef0"
|
||||
},
|
||||
["path.lua"] = "3767ba134238fa42469cfcbcfdf16147",
|
||||
["pattern_tokenizer.lua"] = "f4f99d27e6a6fb5385f583abc70beaab",
|
||||
["select.lua"] = "b0a8180922f7995a86ea9df7eabb162e",
|
||||
["str.lua"] = "06645f5bc876c73af9c4fd3296d620e0",
|
||||
["table.lua"] = "f4a54a5775133c776d65643be728cfdb",
|
||||
["time.lua"] = "54483e160266c85209e4399fbfc43e1b",
|
||||
["types.lua"] = "6605cc2d2293f7080d104c63663c0dac",
|
||||
["util.lua"] = "ac9ec42f0d014d908ff24c5af8172335"
|
||||
}
|
||||
}
|
||||
},
|
||||
["luasnip-2.3.0-1.rockspec"] = "51f9eecc66d3003eb668326f1e4a0e68",
|
||||
plugin = {
|
||||
["luasnip.lua"] = "189a598faa80a372be83a52dc57fb491",
|
||||
["luasnip.vim"] = "e3d30107f8659679f6766d579ce5bf56"
|
||||
},
|
||||
syntax = {
|
||||
["snippets.vim"] = "daeb3f35704d8dca029cfffc5fd5f1c4"
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
" Syntax highlighting for .snippets files
|
||||
" Hopefully this should make snippets a bit nicer to write!
|
||||
syn match snipComment '^#.*'
|
||||
syn match placeHolder '\${\d\+\(:.\{-}\)\=}' contains=snipCommand
|
||||
syn match tabStop '\$\d\+'
|
||||
syn match snipEscape '\\\\\|\\`'
|
||||
syn match snipCommand '\%(\\\@<!\%(\\\\\)*\)\@<=`.\{-}\%(\\\@<!\%(\\\\\)*\)\@<=`'
|
||||
syn match snippet '^snippet.*' contains=multiSnipText,snipKeyword
|
||||
syn match snippet '^autosnippet.*' contains=multiSnipText,snipKeyword
|
||||
syn match snippet '^extends.*' contains=snipKeyword
|
||||
syn match snippet '^priority.*' contains=snipKeyword,priority
|
||||
syn match priority '\d\+' contained
|
||||
syn match multiSnipText '\S\+ \zs.*' contained
|
||||
syn match snipKeyword '^\%(snippet\|extends\|autosnippet\|priority\)' contained
|
||||
" normally we'd want a \s in that group, but that doesn't work => cover common
|
||||
" cases with \t and " ".
|
||||
syn match snipError '^[^#saep\t ].*$'
|
||||
|
||||
hi link snippet Identifier
|
||||
hi link snipComment Comment
|
||||
hi link multiSnipText String
|
||||
hi link snipKeyword Keyword
|
||||
hi link snipEscape SpecialChar
|
||||
hi link placeHolder Special
|
||||
hi link tabStop Special
|
||||
hi link snipCommand String
|
||||
hi link snipError Error
|
||||
hi link priority Number
|
||||
@ -0,0 +1,363 @@
|
||||
commands = {}
|
||||
dependencies = {
|
||||
jsregexp = {},
|
||||
luasnip = {
|
||||
["2.3.0-1"] = {
|
||||
{
|
||||
constraints = {
|
||||
{
|
||||
op = ">=",
|
||||
version = {
|
||||
5, 1, string = "5.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
name = "lua"
|
||||
},
|
||||
{
|
||||
constraints = {
|
||||
{
|
||||
op = ">=",
|
||||
version = {
|
||||
0, 0, 5, string = "0.0.5"
|
||||
}
|
||||
},
|
||||
{
|
||||
op = "<=",
|
||||
version = {
|
||||
0, 0, 7, string = "0.0.7"
|
||||
}
|
||||
}
|
||||
},
|
||||
name = "jsregexp"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
modules = {
|
||||
["luasnip._types"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.config"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.default_config"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras._extra_types"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras._lambda"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras._parser_combinator"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras._treesitter"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.conditions.expand"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.conditions.init"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.conditions.show"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.expand_conditions"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.filetype_functions"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.fmt"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.init"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.otf"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.postfix"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.select_choice"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.snip_location"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.snippet_list"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.extras.treesitter_postfix"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.health"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.init"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.data"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.from_lua"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.from_snipmate"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.from_vscode"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.fs_watchers"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.init"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.snippet_cache"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.types"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.loaders.util"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.absolute_indexer"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.choiceNode"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.duplicate"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.dynamicNode"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.functionNode"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.insertNode"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.key_indexer"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.multiSnippet"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.node"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.restoreNode"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.snippet"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.snippetProxy"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.textNode"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.util"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.nodes.util.trig_engines"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.session.enqueueable_operations"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.session.init"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.session.snippet_collection.init"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.session.snippet_collection.source"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.snippets"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util._builtin_vars"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.auto_table"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.dict"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.directed_graph"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.environ"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.events"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.ext_opts"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.extend_decorator"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.functions"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.jsonc"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.jsregexp"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.lazy_table"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.log"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.mark"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.parser.ast_parser"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.parser.ast_utils"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.parser.init"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.parser.neovim_ast"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.parser.neovim_parser"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.path"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.pattern_tokenizer"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.select"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.str"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.table"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.time"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.types"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
},
|
||||
["luasnip.util.util"] = {
|
||||
"luasnip/2.3.0-1"
|
||||
}
|
||||
}
|
||||
repository = {
|
||||
luasnip = {
|
||||
["2.3.0-1"] = {
|
||||
{
|
||||
arch = "installed",
|
||||
commands = {},
|
||||
dependencies = {},
|
||||
modules = {
|
||||
["luasnip._types"] = "luasnip/_types.lua",
|
||||
["luasnip.config"] = "luasnip/config.lua",
|
||||
["luasnip.default_config"] = "luasnip/default_config.lua",
|
||||
["luasnip.extras._extra_types"] = "luasnip/extras/_extra_types.lua",
|
||||
["luasnip.extras._lambda"] = "luasnip/extras/_lambda.lua",
|
||||
["luasnip.extras._parser_combinator"] = "luasnip/extras/_parser_combinator.lua",
|
||||
["luasnip.extras._treesitter"] = "luasnip/extras/_treesitter.lua",
|
||||
["luasnip.extras.conditions.expand"] = "luasnip/extras/conditions/expand.lua",
|
||||
["luasnip.extras.conditions.init"] = "luasnip/extras/conditions/init.lua",
|
||||
["luasnip.extras.conditions.show"] = "luasnip/extras/conditions/show.lua",
|
||||
["luasnip.extras.expand_conditions"] = "luasnip/extras/expand_conditions.lua",
|
||||
["luasnip.extras.filetype_functions"] = "luasnip/extras/filetype_functions.lua",
|
||||
["luasnip.extras.fmt"] = "luasnip/extras/fmt.lua",
|
||||
["luasnip.extras.init"] = "luasnip/extras/init.lua",
|
||||
["luasnip.extras.otf"] = "luasnip/extras/otf.lua",
|
||||
["luasnip.extras.postfix"] = "luasnip/extras/postfix.lua",
|
||||
["luasnip.extras.select_choice"] = "luasnip/extras/select_choice.lua",
|
||||
["luasnip.extras.snip_location"] = "luasnip/extras/snip_location.lua",
|
||||
["luasnip.extras.snippet_list"] = "luasnip/extras/snippet_list.lua",
|
||||
["luasnip.extras.treesitter_postfix"] = "luasnip/extras/treesitter_postfix.lua",
|
||||
["luasnip.health"] = "luasnip/health.lua",
|
||||
["luasnip.init"] = "luasnip/init.lua",
|
||||
["luasnip.loaders.data"] = "luasnip/loaders/data.lua",
|
||||
["luasnip.loaders.from_lua"] = "luasnip/loaders/from_lua.lua",
|
||||
["luasnip.loaders.from_snipmate"] = "luasnip/loaders/from_snipmate.lua",
|
||||
["luasnip.loaders.from_vscode"] = "luasnip/loaders/from_vscode.lua",
|
||||
["luasnip.loaders.fs_watchers"] = "luasnip/loaders/fs_watchers.lua",
|
||||
["luasnip.loaders.init"] = "luasnip/loaders/init.lua",
|
||||
["luasnip.loaders.snippet_cache"] = "luasnip/loaders/snippet_cache.lua",
|
||||
["luasnip.loaders.types"] = "luasnip/loaders/types.lua",
|
||||
["luasnip.loaders.util"] = "luasnip/loaders/util.lua",
|
||||
["luasnip.nodes.absolute_indexer"] = "luasnip/nodes/absolute_indexer.lua",
|
||||
["luasnip.nodes.choiceNode"] = "luasnip/nodes/choiceNode.lua",
|
||||
["luasnip.nodes.duplicate"] = "luasnip/nodes/duplicate.lua",
|
||||
["luasnip.nodes.dynamicNode"] = "luasnip/nodes/dynamicNode.lua",
|
||||
["luasnip.nodes.functionNode"] = "luasnip/nodes/functionNode.lua",
|
||||
["luasnip.nodes.insertNode"] = "luasnip/nodes/insertNode.lua",
|
||||
["luasnip.nodes.key_indexer"] = "luasnip/nodes/key_indexer.lua",
|
||||
["luasnip.nodes.multiSnippet"] = "luasnip/nodes/multiSnippet.lua",
|
||||
["luasnip.nodes.node"] = "luasnip/nodes/node.lua",
|
||||
["luasnip.nodes.restoreNode"] = "luasnip/nodes/restoreNode.lua",
|
||||
["luasnip.nodes.snippet"] = "luasnip/nodes/snippet.lua",
|
||||
["luasnip.nodes.snippetProxy"] = "luasnip/nodes/snippetProxy.lua",
|
||||
["luasnip.nodes.textNode"] = "luasnip/nodes/textNode.lua",
|
||||
["luasnip.nodes.util"] = "luasnip/nodes/util.lua",
|
||||
["luasnip.nodes.util.trig_engines"] = "luasnip/nodes/util/trig_engines.lua",
|
||||
["luasnip.session.enqueueable_operations"] = "luasnip/session/enqueueable_operations.lua",
|
||||
["luasnip.session.init"] = "luasnip/session/init.lua",
|
||||
["luasnip.session.snippet_collection.init"] = "luasnip/session/snippet_collection/init.lua",
|
||||
["luasnip.session.snippet_collection.source"] = "luasnip/session/snippet_collection/source.lua",
|
||||
["luasnip.snippets"] = "luasnip/snippets.lua",
|
||||
["luasnip.util._builtin_vars"] = "luasnip/util/_builtin_vars.lua",
|
||||
["luasnip.util.auto_table"] = "luasnip/util/auto_table.lua",
|
||||
["luasnip.util.dict"] = "luasnip/util/dict.lua",
|
||||
["luasnip.util.directed_graph"] = "luasnip/util/directed_graph.lua",
|
||||
["luasnip.util.environ"] = "luasnip/util/environ.lua",
|
||||
["luasnip.util.events"] = "luasnip/util/events.lua",
|
||||
["luasnip.util.ext_opts"] = "luasnip/util/ext_opts.lua",
|
||||
["luasnip.util.extend_decorator"] = "luasnip/util/extend_decorator.lua",
|
||||
["luasnip.util.functions"] = "luasnip/util/functions.lua",
|
||||
["luasnip.util.jsonc"] = "luasnip/util/jsonc.lua",
|
||||
["luasnip.util.jsregexp"] = "luasnip/util/jsregexp.lua",
|
||||
["luasnip.util.lazy_table"] = "luasnip/util/lazy_table.lua",
|
||||
["luasnip.util.log"] = "luasnip/util/log.lua",
|
||||
["luasnip.util.mark"] = "luasnip/util/mark.lua",
|
||||
["luasnip.util.parser.ast_parser"] = "luasnip/util/parser/ast_parser.lua",
|
||||
["luasnip.util.parser.ast_utils"] = "luasnip/util/parser/ast_utils.lua",
|
||||
["luasnip.util.parser.init"] = "luasnip/util/parser/init.lua",
|
||||
["luasnip.util.parser.neovim_ast"] = "luasnip/util/parser/neovim_ast.lua",
|
||||
["luasnip.util.parser.neovim_parser"] = "luasnip/util/parser/neovim_parser.lua",
|
||||
["luasnip.util.path"] = "luasnip/util/path.lua",
|
||||
["luasnip.util.pattern_tokenizer"] = "luasnip/util/pattern_tokenizer.lua",
|
||||
["luasnip.util.select"] = "luasnip/util/select.lua",
|
||||
["luasnip.util.str"] = "luasnip/util/str.lua",
|
||||
["luasnip.util.table"] = "luasnip/util/table.lua",
|
||||
["luasnip.util.time"] = "luasnip/util/time.lua",
|
||||
["luasnip.util.types"] = "luasnip/util/types.lua",
|
||||
["luasnip.util.util"] = "luasnip/util/util.lua"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user