From 049c95bd9f9e0887bfd71ef9df463ab4a112d0d0 Mon Sep 17 00:00:00 2001 From: chayleaf Date: Thu, 16 Mar 2023 23:37:57 +0700 Subject: [PATCH] home/nvim: a better require system + type defs --- home/common/helix.nix | 2 +- home/common/kakoune.nix | 2 +- home/common/nvim/default.nix | 225 +- home/common/nvim/dump_nvim_globals.lua | 178 +- home/common/nvim/dump_plugin.lua | 67 + home/common/nvim/vim-defs.json | 1 + home/common/nvim/vim-lua.txt | 9161 ------------------------ home/common/nvim/vim-opts.nix | 119 +- home/common/nvim/vim-opts.txt | 354 - home/common/nvim/vim-vars.txt | 140 - home/common/options.nix | 10 + home/flake.nix | 8 +- home/hosts/nixmsi.nix | 8 +- 13 files changed, 406 insertions(+), 9869 deletions(-) create mode 100644 home/common/nvim/dump_plugin.lua create mode 100644 home/common/nvim/vim-defs.json delete mode 100644 home/common/nvim/vim-lua.txt delete mode 100644 home/common/nvim/vim-opts.txt delete mode 100644 home/common/nvim/vim-vars.txt diff --git a/home/common/helix.nix b/home/common/helix.nix index 4310455..219f3f6 100644 --- a/home/common/helix.nix +++ b/home/common/helix.nix @@ -21,7 +21,7 @@ in { rust-analyzer nodePackages.bash-language-server shellcheck nodePackages.typescript-language-server - clang-tools + clang-tools_latest nodePackages.vscode-langservers-extracted nil marksman diff --git a/home/common/kakoune.nix b/home/common/kakoune.nix index 240e677..cd54f8c 100644 --- a/home/common/kakoune.nix +++ b/home/common/kakoune.nix @@ -21,7 +21,7 @@ in { rust-analyzer nodePackages.bash-language-server shellcheck nodePackages.typescript-language-server - clang-tools + clang-tools_latest nodePackages.vscode-langservers-extracted nil marksman diff --git a/home/common/nvim/default.nix b/home/common/nvim/default.nix index 925335b..3bbe8c7 100644 --- a/home/common/nvim/default.nix +++ b/home/common/nvim/default.nix @@ -85,7 +85,7 @@ else if func.__kind == "prop" then "${wrapExpr (compileExpr sc func.expr)}.${func.name}" else if func.__kind == "call" then - "${wrapExpr (compileExpr sc func.func)}(${builtins.concatStringsSep ", " (map (compileExpr sc) (if builtins.isList func.args then func.args else [func.args]))})" + "${wrapExpr (compileExpr sc func._func)}(${builtins.concatStringsSep ", " (map (compileExpr sc) (if builtins.isList func._args then func._args else [func._args]))})" else if func.__kind == "mcall" then "${wrapExpr (compileExpr sc func.val)}:${func.name}(${builtins.concatStringsSep ", " (map (compileExpr sc) (if builtins.isList func.args then func.args else [func.args]))})" else if func.__kind == "tableAttr" then @@ -167,7 +167,7 @@ # Call a function # corresponding lua code: someFunc() # expr -> [args] -> expr | expr -> arg1 -> expr - call = func: args: { __kind = "call"; inherit func args; }; + call = func: args: { __kind = "call"; _func = func; _args = args; }; # Call a method # corresponding lua code: someTable:someFunc() @@ -232,12 +232,14 @@ bindrec = vals: func: if builtins.isList vals then { __kind = "letrec"; inherit vals func; } else bindrec [ vals ] func; # "type definitions" for neovim - defs = pkgs.callPackage ./vim-opts.nix { inherit raw call; }; + defs = pkgs.callPackage ./vim-opts.nix { inherit raw call; plugins = config.programs.neovim.plugins; }; + reqbind = name: func: bind [ (defs.require name) ] (result: func (defs._reqbind name result._name)); in with defs; let - require = name: call (var "require") [ name ]; - setup = plugin: opts: call (prop plugin "setup") [ opts ]; + # require = name: call (var "require") [ name ]; + # setup = plugin: opts: call (prop plugin "setup") [ opts ]; # vimfn = name: call (raw "vim.fn.${name}"); vimcmd = name: call (raw "vim.cmd.${name}"); + vimg = name: prop vim.g name; keymapSetSingle = opts@{ mode, lhs, @@ -267,12 +269,16 @@ in (lib.mapAttrsToList (k: {rhs, desc}: keymapSetSingle (opts' // { lhs = k; inherit rhs; })) keys) ++ [ - (call (prop (require "which-key") "register") [(lib.mapAttrs (k: v: [v.rhs v.desc]) keys) opts']) + (which-key.register [(lib.mapAttrs (k: v: [v.rhs v.desc]) keys) opts']) ]; keymapSetNs = args: keymapSetMulti (args // { mode = "n"; }); kmSetNs = keys: keymapSetNs { inherit keys; }; keymapSetVs = args: keymapSetMulti (args // { mode = "v"; }); kmSetVs = keys: keymapSetVs { inherit keys; }; + + which-key = req "which-key"; + luasnip = req "luasnip"; + cmp = req "cmp"; in { enable = true; defaultEditor = true; @@ -282,7 +288,7 @@ nodePackages_latest.bash-language-server shellcheck nodePackages_latest.typescript-language-server nodePackages_latest.svelte-language-server - clang-tools + clang-tools_latest nodePackages_latest.vscode-langservers-extracted nil marksman @@ -298,11 +304,12 @@ ]; # extraPython3Packages = pyPkgs: with pyPkgs; [ # ]; + viAlias = true; + vimAlias = true; + vimdiffAlias = true; + extraLuaConfig = (compile "main" [ - (set vim.g.vimsyn_embed "l") - (vim.api.nvim_set_hl [ 0 "NormalFloat" { - bg = "NONE"; - }]) + (set (vimg "vimsyn_embed") "l") (bind (vim.api.nvim_create_augroup [ "nvimrc" { clear = true; } ]) (group: map (au: let au' = lib.filterAttrs (k: v: k != "event") au; in vim.api.nvim_create_autocmd [ au.event ({ @@ -311,10 +318,12 @@ ) [ { event = "FileType"; pattern = ["markdown" "gitcommit"]; + # must be a string callback = defun (set vim.o.colorcolumn "73"); } { event = "FileType"; pattern = ["markdown"]; - callback = defun (set vim.o.textwidth "72"); } + # must be a number... + callback = defun (set vim.o.textwidth 72); } { event = "BufReadPre"; callback = defun (set vim.o.foldmethod "syntax"); } { event = "BufWinEnter"; @@ -322,13 +331,13 @@ (bind (vim.filetype.match { inherit buf; }) (filetype: [ (vimcmd "folddoc" [ "foldopen!" ]) (ifelse [(eq filetype "gitcommit") [ - (vim.cmd { + (call vim.cmd { cmd = "normal"; bang = true; args = [ "gg" ]; }) ]] - (vim.cmd { + (call vim.cmd { cmd = "normal"; bang = true; args = [ "g`\"" ]; @@ -337,13 +346,10 @@ ])); } ])) # END ]); - viAlias = true; - vimAlias = true; - vimdiffAlias = true; - plugins = with pkgs.vimPlugins; map (x: if x?config && x?plugin then { type = "lua"; } // x else x) [ - vim-svelte + plugins = let ps = pkgs.vimPlugins; in map (x: if x?config && x?plugin then { type = "lua"; } // x else x) [ + ps.vim-svelte # TODO remove on next nvim update (0.8.3/0.9) - vim-nix + ps.vim-nix { plugin = pkgs.vimUtils.buildVimPluginFrom2Nix { pname = "vscode-nvim"; version = "2023-02-10"; @@ -354,42 +360,47 @@ sha256 = "sha256-X2IgIjO5NNq7vJdl09hBY1TFqHlsfF1xfllKr4osILI="; }; }; - config = compile "vscode_nvim" (setup (require "vscode") { - transparent = true; - color_overrides = { - vscGray = "#745b5f"; - vscViolet = "#${config.colors.magenta}"; - vscBlue = "#6ddfd8"; - vscDarkBlue = "#${config.colors.blue}"; - vscGreen = "#${config.colors.green}"; - vscBlueGreen = "#73bf88"; - vscLightGreen = "#6acf6e"; - vscRed = "#${config.colors.red}"; - vscOrange = "#e89666"; - vscLightRed = "#e64e4e"; - vscYellowOrange = "#e8b166"; - vscYellow = "#${config.colors.yellow}"; - vscPink = "#cf83c4"; - }; - }); } - { plugin = nvim-web-devicons; - config = compile "nvim_web_devicons" (setup (require "nvim-web-devicons") {}); } - { plugin = nvim-tree-lua; + config = compile "vscode_nvim" [ + ((req "vscode").setup { + transparent = true; + color_overrides = { + vscGray = "#745b5f"; + vscViolet = "#${config.colors.magenta}"; + vscBlue = "#6ddfd8"; + vscDarkBlue = "#${config.colors.blue}"; + vscGreen = "#${config.colors.green}"; + vscBlueGreen = "#73bf88"; + vscLightGreen = "#6acf6e"; + vscRed = "#${config.colors.red}"; + vscOrange = "#e89666"; + vscLightRed = "#e64e4e"; + vscYellowOrange = "#e8b166"; + vscYellow = "#${config.colors.yellow}"; + vscPink = "#cf83c4"; + }; + }) + (vim.api.nvim_set_hl [ 0 "NormalFloat" { + bg = "NONE"; + }]) + ]; } + { plugin = ps.nvim-web-devicons; + config = compile "nvim_web_devicons" ((req "nvim-web-devicons").setup {}); } + { plugin = ps.nvim-tree-lua; config = compile "nvim_tree_lua" [ - (set vim.g.loaded_netrw 1) - (set vim.g.loaded_netrwPlugin 1) - (set vim.opt.termguicolors true) - (setup (require "nvim-tree") {}) # :help nvim-tree-setup + (set (vimg "loaded_netrw") 1) + (set (vimg "loaded_netrwPlugin") 1) + (set vim.o.termguicolors true) + ((req "nvim-tree").setup {}) # :help nvim-tree-setup (kmSetNs { "" = { - rhs = prop (require "nvim-tree.api") "tree.toggle"; + rhs = (req "nvim-tree.api").tree.toggle; desc = "Toggle NvimTree"; }; }) ]; } - vim-sleuth - luasnip - { plugin = nvim-cmp; + ps.vim-sleuth + ps.luasnip + { plugin = ps.nvim-cmp; config = let border = (name: [ [ "╭" name ] @@ -401,10 +412,11 @@ [ "╰" name ] [ "│" name ] ]); - in compile "nvim_cmp" (bind (require "cmp") (cmp: - (setup cmp { + in compile "nvim_cmp" (reqbind "cmp" (cmp: + # call is required because cmp.setup is a table + (call cmp.setup { snippet = { - expand = { body, ... }: call (prop (require "luasnip") "lsp_expand") body; + expand = { body, ... }: luasnip.lsp_expand body; }; view = { }; window = { @@ -420,85 +432,77 @@ format = _: vim_item: let kind = prop vim_item "kind"; in [ (set kind - (string.format ([ + (string.format [ "%s %s" - (tableAttr (require "lspkind") kind) + (tableAttr (req "lspkind") kind) kind - ]))) + ])) (return vim_item) ]; }; mapping = { - "" = call (prop cmp "mapping.select_prev_item") []; - "" = call (prop cmp "mapping.select_next_item") []; - "" = call (prop cmp "mapping.complete") []; - "" = call (prop cmp "mapping.close") []; - "" = call (prop cmp "mapping.confirm") { - behavior = prop cmp "ConfirmBehavior.Replace"; + "" = cmp.mapping.select_prev_item []; + "" = cmp.mapping.select_next_item []; + "" = cmp.mapping.complete []; + "" = cmp.mapping.close []; + "" = cmp.mapping.confirm { + behavior = cmp.ConfirmBehavior.Replace; select = false; }; - "" = call (prop cmp "mapping") [(fallback: - (ifelse [ - [(call (prop cmp "visible") []) - # then - (call (prop cmp "select_next_item") [])] - [(call (prop (require "luasnip") "expand_or_jumpable") []) - # then - (vim.api.nvim_feedkeys [ - (vim.api.nvim_replace_termcodes [ "luasnip-expand-or-jump" true true true ]) - "" - false - ]) - ]] - # else - (call fallback []) + "" = call cmp.mapping [(fallback: + (ifelse [[(cmp.visible []) + (cmp.select_next_item [])] + /*elseif*/ [(luasnip.expand_or_jumpable []) + (vim.api.nvim_feedkeys [ + (vim.api.nvim_replace_termcodes [ "luasnip-expand-or-jump" true true true ]) + "" + false + ]) + ]] # else + (call fallback []) )) [ "i" "s" ] ]; - "" = call (prop cmp "mapping") [(fallback: - (ifelse [ - [(call (prop cmp "visible" ) []) - # then - (call (prop cmp "select_prev_item") [])] - [(call (prop (require "luasnip") "jumpable") [ (-1) ]) - # then - (vim.api.nvim_feedkeys [ - (vim.api.nvim_replace_termcodes [ "luasnip-jump-prev" true true true ]) - "" - false - ]) - ]] - # else - (call fallback []) + "" = call cmp.mapping [(fallback: + (ifelse [[(cmp.visible []) + (cmp.select_prev_item [])] + /*elseif*/ [(luasnip.jumpable [ (-1) ]) + (vim.api.nvim_feedkeys [ + (vim.api.nvim_replace_termcodes [ "luasnip-jump-prev" true true true ]) + "" + false + ]) + ]] # else + (call fallback []) )) [ "i" "s" ] ]; }; - sources = call (prop cmp "config.sources") [[ + sources = cmp.config.sources [[ { name = "nvim_lsp"; } { name = "luasnip"; } ]]; }) )); } - lspkind-nvim - cmp_luasnip - cmp-nvim-lsp - { plugin = nvim-autopairs; - config = compile "nvim_autopairs" (bind (require "nvim-autopairs.completion.cmp") (cmp_autopairs: [ - (setup (require "nvim-autopairs") { + ps.lspkind-nvim + ps.cmp_luasnip + ps.cmp-nvim-lsp + { plugin = ps.nvim-autopairs; + config = compile "nvim_autopairs" (reqbind "nvim-autopairs.completion.cmp" (cmp_autopairs: [ + ((req "nvim-autopairs").setup { disable_filetype = [ "TelescopePrompt" "vim" ]; }) - (mcall (prop (require "cmp") "event") "on" [ + (mcall cmp.event "on" [ "confirm_done" - (call (prop cmp_autopairs "on_confirm_done") []) + (cmp_autopairs.on_confirm_done []) ]) ])); } - { plugin = comment-nvim; + { plugin = ps.comment-nvim; config = compile "comment_nvim" [ - (setup (require "Comment") {}) + ((req "Comment").setup {}) (kmSetNs { "/" = { - rhs = prop (require "Comment.api") "toggle.linewise.current"; + rhs = prop (req "Comment.api").toggle "linewise.current"; desc = "Comment current line"; }; }) @@ -509,8 +513,8 @@ }; }) ]; } - { plugin = nvim-lspconfig; - config = compile "nvim_lspconfig" (let setupLsp = lsp: setup (prop (require "lspconfig") lsp); in [ + { plugin = ps.nvim-lspconfig; + config = compile "nvim_lspconfig" (let setupLsp = lsp: builtins.seq (req "lspconfig.server_configurations.${lsp}") (call (prop (req "lspconfig") "${lsp}.setup")); in [ # See `:help vim.diagnostic.*` for documentation on any of the below functions (kmSetNs { "e" = { @@ -561,7 +565,7 @@ desc = "Remove a folder from the workspace folders."; }; "wl" = { rhs = (defun (print [ - (vim.inspect [(vim.lsp.buf.list_workspace_folders [])]) + (call vim.inspect [(vim.lsp.buf.list_workspace_folders [])]) ])); desc = "List workspace folders."; }; "D" = { @@ -592,7 +596,7 @@ (vim.tbl_extend [ "keep" (vim.lsp.protocol.make_client_capabilities []) - (call (prop (require "cmp_nvim_lsp") "default_capabilities") []) + ((req "cmp_nvim_lsp").default_capabilities []) ]) # BEGIN ] (on_attach: rust_settings: capabilities: [ @@ -600,12 +604,13 @@ # LETREC on_attach_rust (on_attach_rust: client: bufnr: [ (vim.api.nvim_create_user_command ["RustAndroid" (opts: [ + (vim.lsp.set_log_level "debug") (setupLsp "rust_analyzer" { on_attach = on_attach_rust; inherit capabilities; settings = vim.tbl_deep_extend [ "keep" - { rust-analyzer.cargo.target = "x86_64-linux-android"; } + config.rustAnalyzerAndroidSettings rust_settings ]; }) @@ -642,11 +647,11 @@ ]))) # END ])) # END ]); } - { plugin = which-key-nvim; + { plugin = ps.which-key-nvim; config = compile "which_key_nvim" [ (set vim.o.timeout true) (set vim.o.timeoutlen 500) - (setup (require "which-key") {}) + (which-key.setup {}) ]; } ]; }; diff --git a/home/common/nvim/dump_nvim_globals.lua b/home/common/nvim/dump_nvim_globals.lua index 0174369..4c3e730 100644 --- a/home/common/nvim/dump_nvim_globals.lua +++ b/home/common/nvim/dump_nvim_globals.lua @@ -1,39 +1,155 @@ --- globals.lua --- list all global variables --- :enew|pu=execute('luafile /path/to/file.lua') --- list vim vars --- :new | put! =getcompletion('*', 'var') --- list events --- :new | put! =getcompletion('*', 'event') --- list options --- :new | put! =getcompletion('*', 'option') +local seen = {} -local seen={} +local result = {} -function dump(t,i) - seen[t]=true - local s={} - local n=0 - for k in pairs(t) do - n=n+1 s[n]=k +local function dump2(t, path, res) + seen[t] = path + if path ~= "" then + path = path.."." end - local p0 = "package.loaded." - local i1 = (i:sub(0, #p0) == p0) and i:sub(#p0+1) or i - local p1 = "package.preload." - local i2 = (i1:sub(0, #p1) == p1) and i1:sub(#p1+1) or i1 - for k,v in ipairs(s) do - local v0=t[v] - if type(v0)=="table" and not seen[v0] then - dump(v0,i1..v..".") - elseif v ~= "vim._meta" and v ~= "vim._init_packages" and v ~= "table.clear" and v ~= "table.new" and type(v0) == "function" and i:sub(0, #p1) == p1 then - dump(v0(),i2..v..".") - elseif type(v0) == "function" then - print("function/"..debug.getinfo(v0).nparams.."/"..i..v) - elseif type(v0) ~= "table" then - print(type(v0).."/"..i..v) + for k,v in pairs(t) do + k = tostring(k) + if path ~= "" or k ~= "package" then + if type(v) == "table" then + if seen[v] then + if not res[k] then + res[k] = { __kind = "rec", path = seen[v] } + end + else + if not res[k] then + res[k] = {} + end + res[k].__kind = "var" + res[k]._type = "table" + res[k]._name = path..k + dump2(v, path..k, res[k]) + end + elseif type(v) == "function" then + local info = debug.getinfo(v) + res[k] = { + __kind = "var", + _name = path..k, + _type = "function", + _minArity = info.nparams + } + if not info.isvararg then + res[k]["maxArity"] = info.nparams + end + else + res[k] = { + __kind = "var", _name = path..k, _type = type(v) + } + end end end end -dump(_G,"") +local function dumpf(t, path, res) + for k,v in pairs(t.funcs) do + if type(v.args) == "table" then + -- 1 value: min bound + -- 2 values: min and max bound + if #v.args == 1 then + res[k] = { + __kind = "var", + _name = path..k, + _type = "function", + _minArity = v.args[1] + } + elseif #v.args == 2 then + res[k] = { + __kind = "var", + _name = path..k, + _type = "function", + _minArity = v.args[1], + _maxArity = v.args[2] + } + else + print("ERROR") + end + elseif type(v.args) == "number" then + -- exact arg count + res[k] = { + __kind = "var", + _name = path..k, + _type = "function", + _minArity = v.args, + _maxArity = v.args + } + else + -- zero args + res[k] = { + __kind = "var", + _name = path..k, + _type = "function", + _minArity = 0, + _maxArity = 0 + } + end + end +end + +local function dumpo(t, path, opt, res) + local types = { + bool = "boolean", + string = "string", + number = "number", + } + local key_value_options = { + fillchars = true, + listchars = true, + winhighlight = true, + } + for k,v in pairs(t.options) do + if opt and key_value_options[v.full_name] then + -- kv map + res[v.full_name] = { + __kind = "var", + _name = path..v.full_name, + _type = "table" + } + if type(v.abbreviation) == "string" then + res[path..v.full_name] = { __kind = "rec", path = path..v.full_name, } + end + elseif opt and v.list then + -- list + res[v.full_name] = { + __kind = "var", + _name = path..v.full_name, + _type = "table" + } + if type(v.abbreviation) == "string" then + res[v.abbreviation] = { __kind = "rec", path = path..v.full_name, } + end + elseif not opt then + res[v.full_name] = { + __kind = "var", + _name = path..v.full_name, + _type = types[v.type], + } + if type(v.abbreviation) == "string" then + res[v.abbreviation] = { __kind = "rec", path = path..v.full_name, } + end + end + end +end + +local json = require "json" + +--- DUMPING BUILTINS +result["vim"] = { __kind = "var", _type = "table", _name = "vim" } +for k in pairs(vim._submodules) do + result["vim"][k] = { __kind = "var", _type = "table", _name = "vim."..k } + dump2(vim[k], "vim."..k, result["vim"][k]) +end +dump2(package.loaded["vim.shared"], "vim", result["vim"]) +-- for main thread only? +dump2(package.loaded["vim._editor"], "vim", result["vim"]) +dump2(_G, "", result) +-- eval.lua from https://github.com/neovim/neovim/blob/674e23f19c509381e2476a3990e21272e362e3a4/src/nvim/eval.lua +dumpf(require("eval"), "vim.fn.", result["vim"]["fn"]) +-- https://github.com/neovim/neovim/blob/674e23f19c509381e2476a3990e21272e362e3a4/src/nvim/options.lua +dumpo(require("options"), "vim.o.", false, result["vim"]["o"]) +dumpo(require("options"), "vim.opt.", true, result["vim"]["opt"]) +print(json.encode(result)) diff --git a/home/common/nvim/dump_plugin.lua b/home/common/nvim/dump_plugin.lua new file mode 100644 index 0000000..0f1d351 --- /dev/null +++ b/home/common/nvim/dump_plugin.lua @@ -0,0 +1,67 @@ +local seen = {} + +local result = {} + +local function mark(t) + seen[t] = true + for k,v in pairs(t) do + if type(v) == "table" and not seen[v] then + mark(v) + end + end +end + +local function dump2(t, path, res) + seen[t] = path + if path ~= "" then + path = path.."." + end + for k,v in pairs(t) do + k = tostring(k) + if path ~= "" or k ~= "package" then + if type(v) == "table" then + if seen[v] then + if not res[k] and seen[v] ~= true then + res[k] = { __kind = "rec", path = seen[v] } + end + else + if not res[k] then + res[k] = {} + end + res[k].__kind = "var" + res[k]._type = "table" + res[k]._name = path..k + dump2(v, path..k, res[k]) + end + elseif type(v) == "function" then + local info = debug.getinfo(v) + res[k] = { + __kind = "var", + _name = path..k, + _type = "function", + _minArity = info.nparams + } + if not info.isvararg then + res[k]["maxArity"] = info.nparams + end + else + res[k] = { + __kind = "var", _name = path..k, _type = type(v) + } + end + end + end +end + +local json = require "cjson" + +-- mark globals before requiring package +mark(_G) + +local package = "@package@" + +result = { __kind = "var", _type = "table", _name = "" } +dump2(require(package), "", result) + +print(json.encode(result)) + diff --git a/home/common/nvim/vim-defs.json b/home/common/nvim/vim-defs.json new file mode 100644 index 0000000..e9f07a2 --- /dev/null +++ b/home/common/nvim/vim-defs.json @@ -0,0 +1 @@ +{"_VERSION":{"_type":"string","__kind":"var","_name":"_VERSION"},"coroutine":{"status":{"_minArity":0,"_type":"function","__kind":"var","_name":"coroutine.status"},"running":{"_minArity":0,"_type":"function","__kind":"var","_name":"coroutine.running"},"isyieldable":{"_minArity":0,"_type":"function","__kind":"var","_name":"coroutine.isyieldable"},"create":{"_minArity":0,"_type":"function","__kind":"var","_name":"coroutine.create"},"yield":{"_minArity":0,"_type":"function","__kind":"var","_name":"coroutine.yield"},"resume":{"_minArity":0,"_type":"function","__kind":"var","_name":"coroutine.resume"},"wrap":{"_minArity":0,"_type":"function","__kind":"var","_name":"coroutine.wrap"},"__kind":"var","_type":"table","_name":"coroutine"},"jit":{"attach":{"_minArity":0,"_type":"function","__kind":"var","_name":"jit.attach"},"arch":{"_type":"string","__kind":"var","_name":"jit.arch"},"status":{"_minArity":0,"_type":"function","__kind":"var","_name":"jit.status"},"version":{"_type":"string","__kind":"var","_name":"jit.version"},"security":{"_minArity":0,"_type":"function","__kind":"var","_name":"jit.security"},"os":{"_type":"string","__kind":"var","_name":"jit.os"},"opt":{"start":{"_minArity":0,"_type":"function","__kind":"var","_name":"jit.opt.start"},"_type":"table","__kind":"var","_name":"jit.opt"},"flush":{"_minArity":0,"_type":"function","__kind":"var","_name":"jit.flush"},"__kind":"var","on":{"_minArity":0,"_type":"function","__kind":"var","_name":"jit.on"},"version_num":{"_type":"number","__kind":"var","_name":"jit.version_num"},"_type":"table","off":{"_minArity":0,"_type":"function","__kind":"var","_name":"jit.off"},"_name":"jit"},"math":{"abs":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.abs"},"floor":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.floor"},"ceil":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.ceil"},"sqrt":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.sqrt"},"log10":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.log10"},"exp":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.exp"},"sin":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.sin"},"cos":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.cos"},"tan":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.tan"},"asin":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.asin"},"acos":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.acos"},"atan":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.atan"},"sinh":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.sinh"},"cosh":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.cosh"},"tanh":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.tanh"},"frexp":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.frexp"},"modf":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.modf"},"log":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.log"},"deg":{"__kind":"var","maxArity":1,"_type":"function","_name":"math.deg","_minArity":1},"rad":{"__kind":"var","maxArity":1,"_type":"function","_name":"math.rad","_minArity":1},"atan2":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.atan2"},"pow":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.pow"},"fmod":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.fmod"},"ldexp":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.ldexp"},"min":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.min"},"max":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.max"},"pi":{"_type":"number","__kind":"var","_name":"math.pi"},"huge":{"_type":"number","__kind":"var","_name":"math.huge"},"random":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.random"},"randomseed":{"_minArity":0,"_type":"function","__kind":"var","_name":"math.randomseed"},"__kind":"var","_type":"table","_name":"math"},"_G":{"__kind":"rec","path":""},"module":{"_minArity":0,"_type":"function","__kind":"var","_name":"module"},"require":{"_minArity":0,"_type":"function","__kind":"var","_name":"require"},"assert":{"_minArity":0,"_type":"function","__kind":"var","_name":"assert"},"string":{"len":{"__kind":"var","maxArity":1,"_type":"function","_name":"string.len","_minArity":1},"byte":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.byte"},"char":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.char"},"sub":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.sub"},"rep":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.rep"},"reverse":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.reverse"},"lower":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.lower"},"upper":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.upper"},"dump":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.dump"},"find":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.find"},"match":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.match"},"gmatch":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.gmatch"},"gsub":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.gsub"},"format":{"_minArity":0,"_type":"function","__kind":"var","_name":"string.format"},"__kind":"var","_type":"table","_name":"string"},"debug":{"getmetatable":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.getmetatable"},"setmetatable":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.setmetatable"},"getfenv":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.getfenv"},"setfenv":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.setfenv"},"debug":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.debug"},"getregistry":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.getregistry"},"getinfo":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.getinfo"},"getlocal":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.getlocal"},"setlocal":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.setlocal"},"getupvalue":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.getupvalue"},"setupvalue":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.setupvalue"},"upvalueid":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.upvalueid"},"upvaluejoin":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.upvaluejoin"},"sethook":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.sethook"},"__kind":"var","traceback":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.traceback"},"_type":"table","gethook":{"_minArity":0,"_type":"function","__kind":"var","_name":"debug.gethook"},"_name":"debug"},"type":{"_minArity":0,"_type":"function","__kind":"var","_name":"type"},"vim":{"_system":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim._system","_minArity":1},"validate":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.validate","_minArity":1},"gsplit":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.gsplit","_minArity":3},"_init_default_mappings":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim._init_default_mappings","_minArity":0},"t":{"_type":"table","__kind":"var","_name":"vim.t"},"_cs_remote":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim._cs_remote","_minArity":4},"pretty_print":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.pretty_print"},"_expand_pat":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim._expand_pat","_minArity":2},"tbl_islist":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.tbl_islist","_minArity":1},"tbl_isempty":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.tbl_isempty","_minArity":1},"defer_fn":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.defer_fn","_minArity":2},"region":{"__kind":"var","maxArity":5,"_type":"function","_name":"vim.region","_minArity":5},"w":{"_type":"table","__kind":"var","_name":"vim.w"},"g":{"_type":"table","__kind":"var","_name":"vim.g"},"funcref":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.funcref","_minArity":1},"version":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.version"},"_os_proc_children":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim._os_proc_children","_minArity":1},"_os_proc_info":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim._os_proc_info","_minArity":1},"deep_equal":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.deep_equal","_minArity":2},"tbl_keys":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.tbl_keys","_minArity":1},"lsp":{"buf_notify":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.buf_notify","_minArity":3},"start":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.start","_minArity":2},"buf_is_attached":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.buf_is_attached","_minArity":2},"protocol":{"DocumentHighlightKind":{"Read":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DocumentHighlightKind.Read"},"Write":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DocumentHighlightKind.Write"},"Text":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DocumentHighlightKind.Text"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DocumentHighlightKind.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DocumentHighlightKind.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DocumentHighlightKind.3"},"__kind":"var","_type":"table","_name":"vim.lsp.protocol.DocumentHighlightKind"},"CompletionItemKind":{"Text":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Text"},"Method":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Method"},"Function":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Function"},"Constructor":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Constructor"},"Field":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Field"},"Variable":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Variable"},"Class":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Class"},"Interface":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Interface"},"Module":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Module"},"Property":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Property"},"Unit":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Unit"},"Value":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Value"},"Enum":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Enum"},"Keyword":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Keyword"},"Snippet":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Snippet"},"Color":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Color"},"File":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.File"},"Reference":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Reference"},"Folder":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Folder"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.3"},"4":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.4"},"5":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.5"},"6":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.6"},"7":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.7"},"_type":"table","9":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.9"},"14":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.14"},"15":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.15"},"16":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.16"},"17":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.17"},"18":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.18"},"19":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.19"},"20":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.20"},"21":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.21"},"TypeParameter":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.TypeParameter"},"22":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.22"},"Operator":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Operator"},"23":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.23"},"Event":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Event"},"24":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.24"},"Struct":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Struct"},"25":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.25"},"Constant":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.Constant"},"EnumMember":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.EnumMember"},"__kind":"var","13":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.13"},"8":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.8"},"12":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.12"},"11":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.11"},"10":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionItemKind.10"},"_name":"vim.lsp.protocol.CompletionItemKind"},"SymbolKind":{"Method":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Method"},"Function":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Function"},"Constructor":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Constructor"},"Field":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Field"},"Variable":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Variable"},"Class":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Class"},"Interface":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Interface"},"Module":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Module"},"Property":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Property"},"Enum":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Enum"},"File":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.File"},"Constant":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Constant"},"TypeParameter":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.TypeParameter"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.3"},"4":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.4"},"5":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.5"},"6":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.6"},"7":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.7"},"_type":"table","9":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.9"},"Operator":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Operator"},"14":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.14"},"Event":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Event"},"15":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.15"},"Struct":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Struct"},"Namespace":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Namespace"},"Package":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Package"},"String":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.String"},"Number":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Number"},"18":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.18"},"Array":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Array"},"19":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.19"},"Key":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Key"},"26":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.26"},"EnumMember":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.EnumMember"},"21":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.21"},"Boolean":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Boolean"},"22":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.22"},"Null":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Null"},"23":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.23"},"Object":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.Object"},"24":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.24"},"16":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.16"},"25":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.25"},"13":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.13"},"8":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.8"},"12":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.12"},"11":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.11"},"10":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.10"},"__kind":"var","20":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.20"},"17":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.SymbolKind.17"},"_name":"vim.lsp.protocol.SymbolKind"},"ErrorCodes":{"-32601":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32601"},"-32801":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32801"},"-32002":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32002"},"ContentModified":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.ContentModified"},"MethodNotFound":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.MethodNotFound"},"-32603":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32603"},"-32700":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32700"},"-32600":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32600"},"-32602":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32602"},"-32000":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32000"},"ParseError":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.ParseError"},"-32001":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32001"},"InvalidParams":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.InvalidParams"},"-32800":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32800"},"serverErrorStart":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.serverErrorStart"},"serverErrorEnd":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.serverErrorEnd"},"ServerNotInitialized":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.ServerNotInitialized"},"UnknownErrorCode":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.UnknownErrorCode"},"RequestCancelled":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.RequestCancelled"},"__kind":"var","InvalidRequest":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.InvalidRequest"},"InternalError":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.InternalError"},"_type":"table","-32099":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ErrorCodes.-32099"},"_name":"vim.lsp.protocol.ErrorCodes"},"InitializeError":{"__kind":"var","unknownProtocolVersion":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.InitializeError.unknownProtocolVersion"},"_type":"table","1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.InitializeError.1"},"_name":"vim.lsp.protocol.InitializeError"},"TextDocumentSaveReason":{"FocusOut":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSaveReason.FocusOut"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSaveReason.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSaveReason.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSaveReason.3"},"__kind":"var","AfterDelay":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSaveReason.AfterDelay"},"_type":"table","Manual":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSaveReason.Manual"},"_name":"vim.lsp.protocol.TextDocumentSaveReason"},"WatchKind":{"Delete":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.WatchKind.Delete"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.WatchKind.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.WatchKind.2"},"4":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.WatchKind.4"},"__kind":"var","Change":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.WatchKind.Change"},"_type":"table","Create":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.WatchKind.Create"},"_name":"vim.lsp.protocol.WatchKind"},"InsertTextFormat":{"Snippet":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.InsertTextFormat.Snippet"},"__kind":"var","PlainText":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.InsertTextFormat.PlainText"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.InsertTextFormat.2"},"_type":"table","1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.InsertTextFormat.1"},"_name":"vim.lsp.protocol.InsertTextFormat"},"CodeActionKind":{"":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind."},"source":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.source"},"SourceOrganizeImports":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.SourceOrganizeImports"},"RefactorRewrite":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.RefactorRewrite"},"Empty":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.Empty"},"QuickFix":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.QuickFix"},"quickfix":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.quickfix"},"Refactor":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.Refactor"},"refactor":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.refactor"},"RefactorExtract":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.RefactorExtract"},"refactor.extract":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.refactor.extract"},"RefactorInline":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.RefactorInline"},"refactor.inline":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.refactor.inline"},"__kind":"var","refactor.rewrite":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.refactor.rewrite"},"Source":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.Source"},"_type":"table","source.organizeImports":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CodeActionKind.source.organizeImports"},"_name":"vim.lsp.protocol.CodeActionKind"},"FileChangeType":{"Changed":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.FileChangeType.Changed"},"Deleted":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.FileChangeType.Deleted"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FileChangeType.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FileChangeType.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FileChangeType.3"},"__kind":"var","_type":"table","Created":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.FileChangeType.Created"},"_name":"vim.lsp.protocol.FileChangeType"},"ResourceOperationKind":{"Delete":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ResourceOperationKind.Delete"},"delete":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ResourceOperationKind.delete"},"create":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ResourceOperationKind.create"},"rename":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ResourceOperationKind.rename"},"__kind":"var","Rename":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ResourceOperationKind.Rename"},"_type":"table","Create":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.ResourceOperationKind.Create"},"_name":"vim.lsp.protocol.ResourceOperationKind"},"__kind":"var","make_client_capabilities":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.protocol.make_client_capabilities","_minArity":0},"FailureHandlingKind":{"Abort":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FailureHandlingKind.Abort"},"abort":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FailureHandlingKind.abort"},"Transactional":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FailureHandlingKind.Transactional"},"transactional":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FailureHandlingKind.transactional"},"TextOnlyTransactional":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FailureHandlingKind.TextOnlyTransactional"},"textOnlyTransactional":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FailureHandlingKind.textOnlyTransactional"},"Undo":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FailureHandlingKind.Undo"},"__kind":"var","_type":"table","undo":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.FailureHandlingKind.undo"},"_name":"vim.lsp.protocol.FailureHandlingKind"},"MarkupKind":{"markdown":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.MarkupKind.markdown"},"__kind":"var","PlainText":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.MarkupKind.PlainText"},"Markdown":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.MarkupKind.Markdown"},"_type":"table","plaintext":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.MarkupKind.plaintext"},"_name":"vim.lsp.protocol.MarkupKind"},"_resolve_capabilities_compat":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.protocol._resolve_capabilities_compat","_minArity":1},"MessageType":{"Log":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.MessageType.Log"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.MessageType.1"},"Info":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.MessageType.Info"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.MessageType.3"},"4":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.MessageType.4"},"__kind":"var","Warning":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.MessageType.Warning"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.MessageType.2"},"_type":"table","Error":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.MessageType.Error"},"_name":"vim.lsp.protocol.MessageType"},"DiagnosticSeverity":{"Warning":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DiagnosticSeverity.Warning"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DiagnosticSeverity.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DiagnosticSeverity.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DiagnosticSeverity.3"},"4":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DiagnosticSeverity.4"},"__kind":"var","Information":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DiagnosticSeverity.Information"},"Hint":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DiagnosticSeverity.Hint"},"_type":"table","Error":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DiagnosticSeverity.Error"},"_name":"vim.lsp.protocol.DiagnosticSeverity"},"resolve_capabilities":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.protocol.resolve_capabilities","_minArity":1},"DiagnosticTag":{"Deprecated":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DiagnosticTag.Deprecated"},"__kind":"var","2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DiagnosticTag.2"},"Unnecessary":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.DiagnosticTag.Unnecessary"},"_type":"table","1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.DiagnosticTag.1"},"_name":"vim.lsp.protocol.DiagnosticTag"},"CompletionTriggerKind":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionTriggerKind.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionTriggerKind.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.CompletionTriggerKind.3"},"__kind":"var","TriggerForIncompleteCompletions":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionTriggerKind.TriggerForIncompleteCompletions"},"_type":"table","Invoked":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionTriggerKind.Invoked"},"TriggerCharacter":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.CompletionTriggerKind.TriggerCharacter"},"_name":"vim.lsp.protocol.CompletionTriggerKind"},"_type":"table","TextDocumentSyncKind":{"0":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSyncKind.0"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSyncKind.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSyncKind.2"},"None":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSyncKind.None"},"Full":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSyncKind.Full"},"Incremental":{"_type":"number","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSyncKind.Incremental"},"_type":"table","__kind":"var","_name":"vim.lsp.protocol.TextDocumentSyncKind"},"_name":"vim.lsp.protocol"},"get_active_clients":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.get_active_clients","_minArity":1},"util":{"_get_completion_item_kind_name":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util._get_completion_item_kind_name","_minArity":1},"_get_offset_encoding":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util._get_offset_encoding","_minArity":1},"preview_location":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.preview_location","_minArity":2},"locations_to_items":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.locations_to_items","_minArity":2},"_trim":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util._trim","_minArity":2},"_str_byteindex_enc":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util._str_byteindex_enc","_minArity":3},"make_range_params":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.make_range_params","_minArity":2},"make_given_range_params":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.util.make_given_range_params","_minArity":4},"character_offset":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.util.character_offset","_minArity":4},"buf_versions":{"_type":"table","__kind":"var","_name":"vim.lsp.util.buf_versions"},"make_position_params":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.make_position_params","_minArity":2},"open_floating_preview":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.open_floating_preview","_minArity":3},"get_effective_tabstop":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util.get_effective_tabstop","_minArity":1},"text_document_completion_list_to_complete_items":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.text_document_completion_list_to_complete_items","_minArity":2},"__kind":"var","convert_input_to_markdown_lines":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.convert_input_to_markdown_lines","_minArity":2},"trim_empty_lines":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util.trim_empty_lines","_minArity":1},"_get_line_byte_from_position":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util._get_line_byte_from_position","_minArity":3},"_str_utfindex_enc":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util._str_utfindex_enc","_minArity":3},"jump_to_location":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.jump_to_location","_minArity":3},"apply_text_edits":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.apply_text_edits","_minArity":3},"apply_workspace_edit":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.apply_workspace_edit","_minArity":2},"make_floating_popup_options":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.make_floating_popup_options","_minArity":3},"convert_signature_help_to_markdown_lines":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.convert_signature_help_to_markdown_lines","_minArity":3},"buf_clear_references":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util.buf_clear_references","_minArity":1},"try_trim_markdown_code_blocks":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util.try_trim_markdown_code_blocks","_minArity":1},"apply_text_document_edit":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.apply_text_document_edit","_minArity":3},"buf_highlight_references":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.buf_highlight_references","_minArity":3},"extract_completion_items":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util.extract_completion_items","_minArity":1},"get_progress_messages":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.util.get_progress_messages","_minArity":0},"symbols_to_items":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.symbols_to_items","_minArity":2},"make_text_document_params":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util.make_text_document_params","_minArity":1},"make_formatting_params":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util.make_formatting_params","_minArity":1},"make_workspace_params":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.make_workspace_params","_minArity":2},"_get_symbol_kind_name":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util._get_symbol_kind_name","_minArity":1},"parse_snippet":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.util.parse_snippet","_minArity":1},"rename":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.rename","_minArity":3},"_make_floating_popup_size":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util._make_floating_popup_size","_minArity":2},"stylize_markdown":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.util.stylize_markdown","_minArity":3},"_type":"table","set_lines":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.util.set_lines","_minArity":4},"lookup_section":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.util.lookup_section","_minArity":2},"_name":"vim.lsp.util"},"codelens":{"refresh":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.codelens.refresh","_minArity":0},"save":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.codelens.save","_minArity":3},"display":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.codelens.display","_minArity":3},"run":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.codelens.run","_minArity":0},"__kind":"var","get":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.codelens.get","_minArity":1},"__namespaces":{"_type":"table","__kind":"var","_name":"vim.lsp.codelens.__namespaces"},"_type":"table","on_codelens":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.codelens.on_codelens","_minArity":4},"_name":"vim.lsp.codelens"},"rpc":{"connect":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.rpc.connect","_minArity":2},"create_read_loop":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.rpc.create_read_loop","_minArity":3},"start":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.rpc.start","_minArity":4},"__kind":"var","rpc_response_error":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.rpc.rpc_response_error","_minArity":3},"format_rpc_error":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.rpc.format_rpc_error","_minArity":1},"client_errors":{"INVALID_SERVER_MESSAGE":{"_type":"number","__kind":"var","_name":"vim.lsp.rpc.client_errors.INVALID_SERVER_MESSAGE"},"INVALID_SERVER_JSON":{"_type":"number","__kind":"var","_name":"vim.lsp.rpc.client_errors.INVALID_SERVER_JSON"},"NO_RESULT_CALLBACK_FOUND":{"_type":"number","__kind":"var","_name":"vim.lsp.rpc.client_errors.NO_RESULT_CALLBACK_FOUND"},"READ_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.rpc.client_errors.READ_ERROR"},"NOTIFICATION_HANDLER_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.rpc.client_errors.NOTIFICATION_HANDLER_ERROR"},"SERVER_REQUEST_HANDLER_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.rpc.client_errors.SERVER_REQUEST_HANDLER_ERROR"},"SERVER_RESULT_CALLBACK_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.rpc.client_errors.SERVER_RESULT_CALLBACK_ERROR"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.rpc.client_errors.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.rpc.client_errors.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.rpc.client_errors.3"},"4":{"_type":"string","__kind":"var","_name":"vim.lsp.rpc.client_errors.4"},"5":{"_type":"string","__kind":"var","_name":"vim.lsp.rpc.client_errors.5"},"6":{"_type":"string","__kind":"var","_name":"vim.lsp.rpc.client_errors.6"},"7":{"_type":"string","__kind":"var","_name":"vim.lsp.rpc.client_errors.7"},"_type":"table","__kind":"var","_name":"vim.lsp.rpc.client_errors"},"_type":"table","_name":"vim.lsp.rpc"},"_type":"table","_request_name_to_capability":{"textDocument/signatureHelp":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/signatureHelp.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/signatureHelp"},"textDocument/definition":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/definition.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/definition"},"textDocument/documentHighlight":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/documentHighlight.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/documentHighlight"},"textDocument/declaration":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/declaration.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/declaration"},"textDocument/typeDefinition":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/typeDefinition.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/typeDefinition"},"textDocument/documentSymbol":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/documentSymbol.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/documentSymbol"},"textDocument/prepareCallHierarchy":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/prepareCallHierarchy.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/prepareCallHierarchy"},"textDocument/rename":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/rename.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/rename"},"textDocument/prepareRename":{"__kind":"var","2":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/prepareRename.2"},"_type":"table","1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/prepareRename.1"},"_name":"vim.lsp._request_name_to_capability.textDocument/prepareRename"},"textDocument/hover":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/hover.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/hover"},"textDocument/codeAction":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/codeAction.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/codeAction"},"textDocument/rangeFormatting":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/rangeFormatting.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/rangeFormatting"},"textDocument/codeLens":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/codeLens.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/codeLens"},"textDocument/references":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/references.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/references"},"codeLens/resolve":{"__kind":"var","2":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.codeLens/resolve.2"},"_type":"table","1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.codeLens/resolve.1"},"_name":"vim.lsp._request_name_to_capability.codeLens/resolve"},"textDocument/formatting":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/formatting.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/formatting"},"workspace/executeCommand":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.workspace/executeCommand.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.workspace/executeCommand"},"__kind":"var","workspace/symbol":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.workspace/symbol.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.workspace/symbol"},"textDocument/completion":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/completion.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/completion"},"_type":"table","textDocument/implementation":{"1":{"_type":"string","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/implementation.1"},"_type":"table","__kind":"var","_name":"vim.lsp._request_name_to_capability.textDocument/implementation"},"_name":"vim.lsp._request_name_to_capability"},"diagnostic":{"get_line_diagnostics":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.diagnostic.get_line_diagnostics","_minArity":4},"__kind":"var","on_publish_diagnostics":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.diagnostic.on_publish_diagnostics","_minArity":4},"get_namespace":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.diagnostic.get_namespace","_minArity":1},"_type":"table","reset":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.diagnostic.reset","_minArity":2},"_name":"vim.lsp.diagnostic"},"buf_detach_client":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.buf_detach_client","_minArity":2},"get_client_by_id":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.get_client_by_id","_minArity":1},"buf_request_sync":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.buf_request_sync","_minArity":4},"client_is_stopped":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.client_is_stopped","_minArity":1},"get_buffers_by_client_id":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.get_buffers_by_client_id","_minArity":1},"for_each_buffer_client":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.for_each_buffer_client","_minArity":2},"set_log_level":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.set_log_level","_minArity":1},"buf_get_clients":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf_get_clients","_minArity":1},"omnifunc":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.omnifunc","_minArity":2},"handlers":{"textDocument/formatting":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/formatting","_minArity":4},"textDocument/publishDiagnostics":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/publishDiagnostics","_minArity":4},"textDocument/completion":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/completion","_minArity":4},"textDocument/documentHighlight":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/documentHighlight","_minArity":4},"$/progress":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.$/progress","_minArity":4},"window/workDoneProgress/create":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.window/workDoneProgress/create","_minArity":4},"window/showMessageRequest":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.window/showMessageRequest","_minArity":4},"client/registerCapability":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.client/registerCapability","_minArity":4},"_type":"table","textDocument/hover":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/hover","_minArity":4},"workspace/applyEdit":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.workspace/applyEdit","_minArity":4},"textDocument/signatureHelp":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/signatureHelp","_minArity":4},"textDocument/definition":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/definition","_minArity":4},"signature_help":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.signature_help","_minArity":4},"textDocument/implementation":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/implementation","_minArity":4},"workspace/configuration":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.workspace/configuration","_minArity":4},"textDocument/typeDefinition":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/typeDefinition","_minArity":4},"textDocument/documentSymbol":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/documentSymbol","_minArity":4},"textDocument/rename":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/rename","_minArity":4},"textDocument/rangeFormatting":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/rangeFormatting","_minArity":4},"_name":"vim.lsp.handlers","window/showMessage":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.window/showMessage","_minArity":4},"textDocument/codeLens":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/codeLens","_minArity":4},"window/logMessage":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.window/logMessage","_minArity":4},"callHierarchy/incomingCalls":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.callHierarchy/incomingCalls","_minArity":4},"__kind":"var","workspace/executeCommand":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.workspace/executeCommand","_minArity":4},"callHierarchy/outgoingCalls":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.callHierarchy/outgoingCalls","_minArity":4},"workspace/symbol":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.workspace/symbol","_minArity":4},"textDocument/declaration":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/declaration","_minArity":4},"textDocument/references":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.textDocument/references","_minArity":4},"hover":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.hover","_minArity":4},"workspace/workspaceFolders":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.handlers.workspace/workspaceFolders","_minArity":4}},"get_log_path":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.get_log_path","_minArity":0},"client_errors":{"INVALID_SERVER_MESSAGE":{"_type":"number","__kind":"var","_name":"vim.lsp.client_errors.INVALID_SERVER_MESSAGE"},"INVALID_SERVER_JSON":{"_type":"number","__kind":"var","_name":"vim.lsp.client_errors.INVALID_SERVER_JSON"},"NO_RESULT_CALLBACK_FOUND":{"_type":"number","__kind":"var","_name":"vim.lsp.client_errors.NO_RESULT_CALLBACK_FOUND"},"READ_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.client_errors.READ_ERROR"},"NOTIFICATION_HANDLER_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.client_errors.NOTIFICATION_HANDLER_ERROR"},"SERVER_REQUEST_HANDLER_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.client_errors.SERVER_REQUEST_HANDLER_ERROR"},"SERVER_RESULT_CALLBACK_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.client_errors.SERVER_RESULT_CALLBACK_ERROR"},"ON_INIT_CALLBACK_ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.client_errors.ON_INIT_CALLBACK_ERROR"},"__kind":"var","1":{"_type":"string","__kind":"var","_name":"vim.lsp.client_errors.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.client_errors.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.client_errors.3"},"4":{"_type":"string","__kind":"var","_name":"vim.lsp.client_errors.4"},"5":{"_type":"string","__kind":"var","_name":"vim.lsp.client_errors.5"},"6":{"_type":"string","__kind":"var","_name":"vim.lsp.client_errors.6"},"7":{"_type":"string","__kind":"var","_name":"vim.lsp.client_errors.7"},"8":{"_type":"string","__kind":"var","_name":"vim.lsp.client_errors.8"},"_type":"table","_name":"vim.lsp.client_errors"},"with":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.with","_minArity":2},"buf":{"document_highlight":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.buf.document_highlight","_minArity":0},"document_symbol":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.document_symbol","_minArity":1},"signature_help":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.buf.signature_help","_minArity":0},"references":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.buf.references","_minArity":2},"implementation":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.implementation","_minArity":1},"clear_references":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.buf.clear_references","_minArity":0},"execute_command":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.execute_command","_minArity":1},"format":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.format","_minArity":1},"type_definition":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.type_definition","_minArity":1},"completion":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.completion","_minArity":1},"incoming_calls":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.buf.incoming_calls","_minArity":0},"formatting":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.formatting","_minArity":1},"list_workspace_folders":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.buf.list_workspace_folders","_minArity":0},"formatting_sync":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.buf.formatting_sync","_minArity":2},"add_workspace_folder":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.add_workspace_folder","_minArity":1},"hover":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.buf.hover","_minArity":0},"formatting_seq_sync":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.buf.formatting_seq_sync","_minArity":3},"workspace_symbol":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.buf.workspace_symbol","_minArity":2},"declaration":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.declaration","_minArity":1},"range_code_action":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.buf.range_code_action","_minArity":3},"definition":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.definition","_minArity":1},"range_formatting":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.buf.range_formatting","_minArity":3},"outgoing_calls":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.buf.outgoing_calls","_minArity":0},"rename":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.buf.rename","_minArity":2},"__kind":"var","server_ready":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.buf.server_ready","_minArity":0},"code_action":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.code_action","_minArity":1},"_type":"table","remove_workspace_folder":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.buf.remove_workspace_folder","_minArity":1},"_name":"vim.lsp.buf"},"_with_extend":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp._with_extend","_minArity":3},"tagfunc":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.lsp.tagfunc"},"_cmd_parts":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp._cmd_parts","_minArity":1},"buf_request":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.buf_request","_minArity":4},"rpc_response_error":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.lsp.rpc_response_error","_minArity":3},"_unsupported_method":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp._unsupported_method","_minArity":1},"formatexpr":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.formatexpr","_minArity":1},"buf_attach_client":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.buf_attach_client","_minArity":2},"start_client":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.lsp.start_client","_minArity":1},"_name":"vim.lsp","buf_request_all":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.lsp.buf_request_all","_minArity":4},"__kind":"var","log_levels":{"INFO":{"_type":"number","__kind":"var","_name":"vim.lsp.log_levels.INFO"},"OFF":{"_type":"number","__kind":"var","_name":"vim.lsp.log_levels.OFF"},"TRACE":{"_type":"number","__kind":"var","_name":"vim.lsp.log_levels.TRACE"},"5":{"_type":"string","__kind":"var","_name":"vim.lsp.log_levels.5"},"0":{"_type":"string","__kind":"var","_name":"vim.lsp.log_levels.0"},"1":{"_type":"string","__kind":"var","_name":"vim.lsp.log_levels.1"},"2":{"_type":"string","__kind":"var","_name":"vim.lsp.log_levels.2"},"3":{"_type":"string","__kind":"var","_name":"vim.lsp.log_levels.3"},"4":{"_type":"string","__kind":"var","_name":"vim.lsp.log_levels.4"},"__kind":"var","ERROR":{"_type":"number","__kind":"var","_name":"vim.lsp.log_levels.ERROR"},"WARN":{"_type":"number","__kind":"var","_name":"vim.lsp.log_levels.WARN"},"_type":"table","DEBUG":{"_type":"number","__kind":"var","_name":"vim.lsp.log_levels.DEBUG"},"_name":"vim.lsp.log_levels"},"client":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.lsp.client","_minArity":0},"stop_client":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.lsp.stop_client","_minArity":2},"commands":{"_type":"table","__kind":"var","_name":"vim.lsp.commands"}},"treesitter":{"node_contains":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.treesitter.node_contains","_minArity":2},"get_captures_at_pos":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.get_captures_at_pos","_minArity":3},"set_query":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.set_query","_minArity":3},"parse_query":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.treesitter.parse_query","_minArity":2},"is_in_node_range":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.is_in_node_range","_minArity":3},"language_version":{"_type":"number","__kind":"var","_name":"vim.treesitter.language_version"},"start":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.treesitter.start","_minArity":2},"get_node_text":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.get_node_text","_minArity":3},"get_query_files":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.get_query_files","_minArity":3},"_create_parser":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter._create_parser","_minArity":3},"require_language":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.treesitter.require_language","_minArity":4},"get_node_range":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.treesitter.get_node_range","_minArity":1},"stop":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.treesitter.stop","_minArity":1},"is_ancestor":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.treesitter.is_ancestor","_minArity":2},"add_directive":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.add_directive","_minArity":3},"inspect_language":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.treesitter.inspect_language","_minArity":1},"get_captures_at_cursor":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.treesitter.get_captures_at_cursor","_minArity":1},"get_node_at_pos":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.treesitter.get_node_at_pos","_minArity":4},"list_predicates":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.treesitter.list_predicates","_minArity":0},"get_parser":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.get_parser","_minArity":3},"list_directives":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.treesitter.list_directives","_minArity":0},"get_node_at_cursor":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.treesitter.get_node_at_cursor","_minArity":1},"get_string_parser":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.get_string_parser","_minArity":3},"__kind":"var","get_query":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.treesitter.get_query","_minArity":2},"add_predicate":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.treesitter.add_predicate","_minArity":3},"_type":"table","minimum_language_version":{"_type":"number","__kind":"var","_name":"vim.treesitter.minimum_language_version"},"_name":"vim.treesitter"},"ui":{"select":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.ui.select","_minArity":3},"input":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.ui.input","_minArity":2},"_type":"table","__kind":"var","_name":"vim.ui"},"fs":{"basename":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.fs.basename","_minArity":1},"dir":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.fs.dir","_minArity":1},"parents":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.fs.parents","_minArity":1},"__kind":"var","normalize":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.fs.normalize","_minArity":1},"find":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.fs.find","_minArity":2},"_type":"table","dirname":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.fs.dirname","_minArity":1},"_name":"vim.fs"},"health":{"report_start":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.health.report_start","_minArity":1},"report_error":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.health.report_error"},"report_info":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.health.report_info","_minArity":1},"__kind":"var","_complete":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.health._complete","_minArity":0},"report_ok":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.health.report_ok","_minArity":1},"report_warn":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.health.report_warn"},"_type":"table","_name":"vim.health"},"filetype":{"getlines":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.filetype.getlines","_minArity":3},"add":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.filetype.add","_minArity":1},"findany":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.filetype.findany","_minArity":2},"__kind":"var","_type":"table","match":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.filetype.match","_minArity":1},"matchregex":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.filetype.matchregex","_minArity":2},"nextnonblank":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.filetype.nextnonblank","_minArity":2},"_name":"vim.filetype"},"F":{"npcall":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.F.npcall"},"nil_wrap":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.F.nil_wrap","_minArity":1},"if_nil":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.F.if_nil","_minArity":2},"__kind":"var","ok_or_nil":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.F.ok_or_nil"},"_name":"vim.F","_type":"table","pack_len":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.F.pack_len"},"unpack_len":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.F.unpack_len","_minArity":1}},"diagnostic":{"setloclist":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.setloclist","_minArity":1},"goto_prev":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.goto_prev","_minArity":1},"get_next":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.get_next","_minArity":1},"get_next_pos":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.get_next_pos","_minArity":1},"get":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.get","_minArity":2},"severity":{"INFO":{"_type":"number","__kind":"var","_name":"vim.diagnostic.severity.INFO"},"HINT":{"_type":"number","__kind":"var","_name":"vim.diagnostic.severity.HINT"},"E":{"_type":"number","__kind":"var","_name":"vim.diagnostic.severity.E"},"I":{"_type":"number","__kind":"var","_name":"vim.diagnostic.severity.I"},"N":{"_type":"number","__kind":"var","_name":"vim.diagnostic.severity.N"},"1":{"_type":"string","__kind":"var","_name":"vim.diagnostic.severity.1"},"2":{"_type":"string","__kind":"var","_name":"vim.diagnostic.severity.2"},"3":{"_type":"string","__kind":"var","_name":"vim.diagnostic.severity.3"},"4":{"_type":"string","__kind":"var","_name":"vim.diagnostic.severity.4"},"__kind":"var","ERROR":{"_type":"number","__kind":"var","_name":"vim.diagnostic.severity.ERROR"},"WARN":{"_type":"number","__kind":"var","_name":"vim.diagnostic.severity.WARN"},"_type":"table","W":{"_type":"number","__kind":"var","_name":"vim.diagnostic.severity.W"},"_name":"vim.diagnostic.severity"},"set":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.diagnostic.set","_minArity":4},"show":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.diagnostic.show","_minArity":4},"_execute_scheduled_display":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic._execute_scheduled_display","_minArity":2},"hide":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.hide","_minArity":2},"match":{"__kind":"var","maxArity":5,"_type":"function","_name":"vim.diagnostic.match","_minArity":5},"get_prev_pos":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.get_prev_pos","_minArity":1},"goto_next":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.goto_next","_minArity":1},"get_prev":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.get_prev","_minArity":1},"handlers":{"__kind":"var","underline":{"hide":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.handlers.underline.hide","_minArity":2},"show":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.diagnostic.handlers.underline.show","_minArity":4},"_type":"table","__kind":"var","_name":"vim.diagnostic.handlers.underline"},"signs":{"hide":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.handlers.signs.hide","_minArity":2},"show":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.diagnostic.handlers.signs.show","_minArity":4},"_type":"table","__kind":"var","_name":"vim.diagnostic.handlers.signs"},"_type":"table","virtual_text":{"hide":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.handlers.virtual_text.hide","_minArity":2},"show":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.diagnostic.handlers.virtual_text.show","_minArity":4},"_type":"table","__kind":"var","_name":"vim.diagnostic.handlers.virtual_text"},"_name":"vim.diagnostic.handlers"},"get_namespaces":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.diagnostic.get_namespaces","_minArity":0},"open_float":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.diagnostic.open_float"},"get_namespace":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.get_namespace","_minArity":1},"config":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.config","_minArity":2},"toqflist":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.toqflist","_minArity":1},"reset":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.reset","_minArity":2},"setqflist":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.setqflist","_minArity":1},"_get_virt_text_chunks":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic._get_virt_text_chunks","_minArity":2},"__kind":"var","disable":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.disable","_minArity":2},"enable":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.diagnostic.enable","_minArity":2},"_type":"table","fromqflist":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.diagnostic.fromqflist","_minArity":1},"_name":"vim.diagnostic"},"_create_ts_parser":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._create_ts_parser"},"_ts_add_language":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._ts_add_language"},"_ts_has_language":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._ts_has_language"},"_ts_remove_language":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._ts_remove_language"},"_ts_inspect_language":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._ts_inspect_language"},"_ts_parse_query":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._ts_parse_query"},"_ts_get_language_version":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._ts_get_language_version"},"_ts_get_minimum_language_version":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._ts_get_minimum_language_version"},"stricmp":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.stricmp"},"str_utfindex":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.str_utfindex"},"str_byteindex":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.str_byteindex"},"pesc":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.pesc","_minArity":1},"trim":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.trim","_minArity":1},"list_slice":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.list_slice","_minArity":3},"tbl_count":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.tbl_count","_minArity":1},"spairs":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.spairs","_minArity":1},"tbl_flatten":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.tbl_flatten","_minArity":1},"list_extend":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.list_extend","_minArity":4},"tbl_get":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.tbl_get"},"_setvar":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._setvar"},"tbl_deep_extend":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.tbl_deep_extend"},"spell":{"check":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.spell.check"},"_type":"table","__kind":"var","_name":"vim.spell"},"tbl_contains":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.tbl_contains","_minArity":2},"tbl_filter":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.tbl_filter","_minArity":2},"tbl_map":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.tbl_map","_minArity":2},"schedule":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.schedule"},"split":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.split","_minArity":3},"call":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.call"},"rpcrequest":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.rpcrequest"},"rpcnotify":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.rpcnotify"},"wait":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.wait"},"ui_attach":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.ui_attach"},"ui_detach":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.ui_detach"},"is_thread":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.is_thread"},"diff":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.diff"},"NIL":{"_type":"userdata","__kind":"var","_name":"vim.NIL"},"go":{"_type":"table","__kind":"var","_name":"vim.go"},"_empty_dict_mt":{"__tostring":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._empty_dict_mt.__tostring"},"_type":"table","__kind":"var","_name":"vim._empty_dict_mt"},"bo":{"_type":"table","__kind":"var","_name":"vim.bo"},"env":{"_type":"table","__kind":"var","_name":"vim.env"},"inspect":{"_VERSION":{"_type":"string","__kind":"var","_name":"vim.inspect._VERSION"},"_URL":{"_type":"string","__kind":"var","_name":"vim.inspect._URL"},"_LICENSE":{"_type":"string","__kind":"var","_name":"vim.inspect._LICENSE"},"inspect":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.inspect.inspect","_minArity":2},"__kind":"var","_DESCRIPTION":{"_type":"string","__kind":"var","_name":"vim.inspect._DESCRIPTION"},"_type":"table","METATABLE":{"_type":"table","__kind":"var","_name":"vim.inspect.METATABLE"},"KEY":{"_type":"table","__kind":"var","_name":"vim.inspect.KEY"},"_name":"vim.inspect"},"keymap":{"__kind":"var","del":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.keymap.del","_minArity":3},"_type":"table","set":{"__kind":"var","maxArity":4,"_type":"function","_name":"vim.keymap.set","_minArity":4},"_name":"vim.keymap"},"highlight":{"range":{"__kind":"var","maxArity":6,"_type":"function","_name":"vim.highlight.range","_minArity":6},"priorities":{"treesitter":{"_type":"number","__kind":"var","_name":"vim.highlight.priorities.treesitter"},"__kind":"var","user":{"_type":"number","__kind":"var","_name":"vim.highlight.priorities.user"},"syntax":{"_type":"number","__kind":"var","_name":"vim.highlight.priorities.syntax"},"_type":"table","diagnostics":{"_type":"number","__kind":"var","_name":"vim.highlight.priorities.diagnostics"},"_name":"vim.highlight.priorities"},"__kind":"var","link":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.highlight.link","_minArity":3},"on_yank":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.highlight.on_yank","_minArity":1},"_type":"table","create":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.highlight.create","_minArity":3},"_name":"vim.highlight"},"mpack":{"Unpacker":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.mpack.Unpacker"},"Packer":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.mpack.Packer"},"Session":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.mpack.Session"},"decode":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.mpack.decode"},"encode":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.mpack.encode"},"NIL":{"_type":"userdata","__kind":"var","_name":"vim.mpack.NIL"},"__kind":"var","_type":"table","_name":"vim.mpack"},"tbl_add_reverse_lookup":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.tbl_add_reverse_lookup","_minArity":1},"notify_once":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.notify_once","_minArity":3},"opt_local":{"_type":"table","__kind":"var","_name":"vim.opt_local"},"_getvar":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim._getvar"},"o":{"wildcharm":{"_type":"number","__kind":"var","_name":"vim.o.wildcharm"},"wcm":{"__kind":"rec","path":"vim.o.wildcharm"},"wildignore":{"_type":"string","__kind":"var","_name":"vim.o.wildignore"},"wig":{"__kind":"rec","path":"vim.o.wildignore"},"wildignorecase":{"_type":"boolean","__kind":"var","_name":"vim.o.wildignorecase"},"wic":{"__kind":"rec","path":"vim.o.wildignorecase"},"wildmenu":{"_type":"boolean","__kind":"var","_name":"vim.o.wildmenu"},"wmnu":{"__kind":"rec","path":"vim.o.wildmenu"},"path":{"_type":"string","__kind":"var","_name":"vim.o.path"},"cb":{"__kind":"rec","path":"vim.o.clipboard"},"wildmode":{"_type":"string","__kind":"var","_name":"vim.o.wildmode"},"wim":{"__kind":"rec","path":"vim.o.wildmode"},"inf":{"__kind":"rec","path":"vim.o.infercase"},"timeout":{"_type":"boolean","__kind":"var","_name":"vim.o.timeout"},"icon":{"_type":"boolean","__kind":"var","_name":"vim.o.icon"},"wildoptions":{"_type":"string","__kind":"var","_name":"vim.o.wildoptions"},"wop":{"__kind":"rec","path":"vim.o.wildoptions"},"mmp":{"__kind":"rec","path":"vim.o.maxmempattern"},"winaltkeys":{"_type":"string","__kind":"var","_name":"vim.o.winaltkeys"},"wak":{"__kind":"rec","path":"vim.o.winaltkeys"},"winbar":{"_type":"string","__kind":"var","_name":"vim.o.winbar"},"wbr":{"__kind":"rec","path":"vim.o.winbar"},"winblend":{"_type":"number","__kind":"var","_name":"vim.o.winblend"},"winbl":{"__kind":"rec","path":"vim.o.winblend"},"wi":{"__kind":"rec","path":"vim.o.window"},"wh":{"__kind":"rec","path":"vim.o.winheight"},"lines":{"_type":"number","__kind":"var","_name":"vim.o.lines"},"winfixheight":{"_type":"boolean","__kind":"var","_name":"vim.o.winfixheight"},"wfh":{"__kind":"rec","path":"vim.o.winfixheight"},"winfixwidth":{"_type":"boolean","__kind":"var","_name":"vim.o.winfixwidth"},"wfw":{"__kind":"rec","path":"vim.o.winfixwidth"},"winminheight":{"_type":"number","__kind":"var","_name":"vim.o.winminheight"},"wmh":{"__kind":"rec","path":"vim.o.winminheight"},"winminwidth":{"_type":"number","__kind":"var","_name":"vim.o.winminwidth"},"wmw":{"__kind":"rec","path":"vim.o.winminwidth"},"wiw":{"__kind":"rec","path":"vim.o.winwidth"},"wrapmargin":{"_type":"number","__kind":"var","_name":"vim.o.wrapmargin"},"wrapscan":{"_type":"boolean","__kind":"var","_name":"vim.o.wrapscan"},"ws":{"__kind":"rec","path":"vim.o.wrapscan"},"ex":{"__kind":"rec","path":"vim.o.exrc"},"gd":{"__kind":"rec","path":"vim.o.gdefault"},"writeany":{"_type":"boolean","__kind":"var","_name":"vim.o.writeany"},"inc":{"__kind":"rec","path":"vim.o.include"},"mp":{"__kind":"rec","path":"vim.o.makeprg"},"sh":{"__kind":"rec","path":"vim.o.shell"},"pp":{"__kind":"rec","path":"vim.o.packpath"},"pi":{"__kind":"rec","path":"vim.o.preserveindent"},"sc":{"__kind":"rec","path":"vim.o.showcmd"},"debug":{"_type":"string","__kind":"var","_name":"vim.o.debug"},"shell":{"_type":"string","__kind":"var","_name":"vim.o.shell"},"tf":{"__kind":"rec","path":"vim.o.ttyfast"},"pm":{"__kind":"rec","path":"vim.o.patchmode"},"directory":{"_type":"string","__kind":"var","_name":"vim.o.directory"},"def":{"__kind":"rec","path":"vim.o.define"},"si":{"__kind":"rec","path":"vim.o.smartindent"},"mod":{"__kind":"rec","path":"vim.o.modified"},"hh":{"__kind":"rec","path":"vim.o.helpheight"},"remap":{"_type":"boolean","__kind":"var","_name":"vim.o.remap"},"cf":{"__kind":"rec","path":"vim.o.confirm"},"bl":{"__kind":"rec","path":"vim.o.buflisted"},"warn":{"_type":"boolean","__kind":"var","_name":"vim.o.warn"},"fileformat":{"_type":"string","__kind":"var","_name":"vim.o.fileformat"},"encoding":{"_type":"string","__kind":"var","_name":"vim.o.encoding"},"tagfunc":{"_type":"string","__kind":"var","_name":"vim.o.tagfunc"},"omnifunc":{"_type":"string","__kind":"var","_name":"vim.o.omnifunc"},"formatprg":{"_type":"string","__kind":"var","_name":"vim.o.formatprg"},"formatexpr":{"_type":"string","__kind":"var","_name":"vim.o.formatexpr"},"verbose":{"_type":"number","__kind":"var","_name":"vim.o.verbose"},"gp":{"__kind":"rec","path":"vim.o.grepprg"},"sp":{"__kind":"rec","path":"vim.o.shellpipe"},"display":{"_type":"string","__kind":"var","_name":"vim.o.display"},"backupcopy":{"_type":"string","__kind":"var","_name":"vim.o.backupcopy"},"bkc":{"__kind":"rec","path":"vim.o.backupcopy"},"sol":{"__kind":"rec","path":"vim.o.startofline"},"viminfo":{"_type":"string","__kind":"var","_name":"vim.o.viminfo"},"backupdir":{"_type":"string","__kind":"var","_name":"vim.o.backupdir"},"bdir":{"__kind":"rec","path":"vim.o.backupdir"},"secure":{"_type":"boolean","__kind":"var","_name":"vim.o.secure"},"backupext":{"_type":"string","__kind":"var","_name":"vim.o.backupext"},"bex":{"__kind":"rec","path":"vim.o.backupext"},"backupskip":{"_type":"string","__kind":"var","_name":"vim.o.backupskip"},"bsk":{"__kind":"rec","path":"vim.o.backupskip"},"belloff":{"_type":"string","__kind":"var","_name":"vim.o.belloff"},"bin":{"__kind":"rec","path":"vim.o.binary"},"sd":{"__kind":"rec","path":"vim.o.shada"},"bomb":{"_type":"boolean","__kind":"var","_name":"vim.o.bomb"},"breakat":{"_type":"string","__kind":"var","_name":"vim.o.breakat"},"brk":{"__kind":"rec","path":"vim.o.breakat"},"ss":{"__kind":"rec","path":"vim.o.sidescroll"},"breakindent":{"_type":"boolean","__kind":"var","_name":"vim.o.breakindent"},"bri":{"__kind":"rec","path":"vim.o.breakindent"},"breakindentopt":{"_type":"string","__kind":"var","_name":"vim.o.breakindentopt"},"briopt":{"__kind":"rec","path":"vim.o.breakindentopt"},"bsdir":{"__kind":"rec","path":"vim.o.browsedir"},"sm":{"__kind":"rec","path":"vim.o.showmatch"},"ru":{"__kind":"rec","path":"vim.o.ruler"},"bh":{"__kind":"rec","path":"vim.o.bufhidden"},"buftype":{"_type":"string","__kind":"var","_name":"vim.o.buftype"},"bt":{"__kind":"rec","path":"vim.o.buftype"},"casemap":{"_type":"string","__kind":"var","_name":"vim.o.casemap"},"cmp":{"__kind":"rec","path":"vim.o.casemap"},"cdhome":{"_type":"boolean","__kind":"var","_name":"vim.o.cdhome"},"cdh":{"__kind":"rec","path":"vim.o.cdhome"},"writebackup":{"_type":"boolean","__kind":"var","_name":"vim.o.writebackup"},"wb":{"__kind":"rec","path":"vim.o.writebackup"},"cdpath":{"_type":"string","__kind":"var","_name":"vim.o.cdpath"},"cd":{"__kind":"rec","path":"vim.o.cdpath"},"writedelay":{"_type":"number","__kind":"var","_name":"vim.o.writedelay"},"wd":{"__kind":"rec","path":"vim.o.writedelay"},"smd":{"__kind":"rec","path":"vim.o.showmode"},"list":{"_type":"boolean","__kind":"var","_name":"vim.o.list"},"channel":{"_type":"number","__kind":"var","_name":"vim.o.channel"},"wa":{"__kind":"rec","path":"vim.o.writeany"},"charconvert":{"_type":"string","__kind":"var","_name":"vim.o.charconvert"},"ccv":{"__kind":"rec","path":"vim.o.charconvert"},"write":{"_type":"boolean","__kind":"var","_name":"vim.o.write"},"wm":{"__kind":"rec","path":"vim.o.wrapmargin"},"cin":{"__kind":"rec","path":"vim.o.cindent"},"wrap":{"_type":"boolean","__kind":"var","_name":"vim.o.wrap"},"winwidth":{"_type":"number","__kind":"var","_name":"vim.o.winwidth"},"cinkeys":{"_type":"string","__kind":"var","_name":"vim.o.cinkeys"},"cink":{"__kind":"rec","path":"vim.o.cinkeys"},"winheight":{"_type":"number","__kind":"var","_name":"vim.o.winheight"},"nf":{"__kind":"rec","path":"vim.o.nrformats"},"ri":{"__kind":"rec","path":"vim.o.revins"},"cino":{"__kind":"rec","path":"vim.o.cinoptions"},"winhl":{"__kind":"rec","path":"vim.o.winhighlight"},"rightleft":{"_type":"boolean","__kind":"var","_name":"vim.o.rightleft"},"rl":{"__kind":"rec","path":"vim.o.rightleft"},"cinw":{"__kind":"rec","path":"vim.o.cinwords"},"rightleftcmd":{"_type":"string","__kind":"var","_name":"vim.o.rightleftcmd"},"rlc":{"__kind":"rec","path":"vim.o.rightleftcmd"},"icm":{"__kind":"rec","path":"vim.o.inccommand"},"ruler":{"_type":"boolean","__kind":"var","_name":"vim.o.ruler"},"cinsd":{"__kind":"rec","path":"vim.o.cinscopedecls"},"sel":{"__kind":"rec","path":"vim.o.selection"},"rulerformat":{"_type":"string","__kind":"var","_name":"vim.o.rulerformat"},"ruf":{"__kind":"rec","path":"vim.o.rulerformat"},"clipboard":{"_type":"string","__kind":"var","_name":"vim.o.clipboard"},"shellpipe":{"_type":"string","__kind":"var","_name":"vim.o.shellpipe"},"runtimepath":{"_type":"string","__kind":"var","_name":"vim.o.runtimepath"},"rtp":{"__kind":"rec","path":"vim.o.runtimepath"},"fcs":{"__kind":"rec","path":"vim.o.fillchars"},"whichwrap":{"_type":"string","__kind":"var","_name":"vim.o.whichwrap"},"scroll":{"_type":"number","__kind":"var","_name":"vim.o.scroll"},"scr":{"__kind":"rec","path":"vim.o.scroll"},"vb":{"__kind":"rec","path":"vim.o.visualbell"},"selection":{"_type":"string","__kind":"var","_name":"vim.o.selection"},"scrollback":{"_type":"number","__kind":"var","_name":"vim.o.scrollback"},"scbk":{"__kind":"rec","path":"vim.o.scrollback"},"co":{"__kind":"rec","path":"vim.o.columns"},"scrollbind":{"_type":"boolean","__kind":"var","_name":"vim.o.scrollbind"},"scb":{"__kind":"rec","path":"vim.o.scrollbind"},"ro":{"__kind":"rec","path":"vim.o.readonly"},"comments":{"_type":"string","__kind":"var","_name":"vim.o.comments"},"scrolljump":{"_type":"number","__kind":"var","_name":"vim.o.scrolljump"},"sj":{"__kind":"rec","path":"vim.o.scrolljump"},"mousetime":{"_type":"number","__kind":"var","_name":"vim.o.mousetime"},"commentstring":{"_type":"string","__kind":"var","_name":"vim.o.commentstring"},"scrolloff":{"_type":"number","__kind":"var","_name":"vim.o.scrolloff"},"so":{"__kind":"rec","path":"vim.o.scrolloff"},"foldlevelstart":{"_type":"number","__kind":"var","_name":"vim.o.foldlevelstart"},"pyx":{"__kind":"rec","path":"vim.o.pyxversion"},"scrollopt":{"_type":"string","__kind":"var","_name":"vim.o.scrollopt"},"sbo":{"__kind":"rec","path":"vim.o.scrollopt"},"foldmarker":{"_type":"string","__kind":"var","_name":"vim.o.foldmarker"},"ar":{"__kind":"rec","path":"vim.o.autoread"},"preserveindent":{"_type":"boolean","__kind":"var","_name":"vim.o.preserveindent"},"sections":{"_type":"string","__kind":"var","_name":"vim.o.sections"},"sect":{"__kind":"rec","path":"vim.o.sections"},"cocu":{"__kind":"rec","path":"vim.o.concealcursor"},"viewoptions":{"_type":"string","__kind":"var","_name":"vim.o.viewoptions"},"cole":{"__kind":"rec","path":"vim.o.conceallevel"},"para":{"__kind":"rec","path":"vim.o.paragraphs"},"completefunc":{"_type":"string","__kind":"var","_name":"vim.o.completefunc"},"cfu":{"__kind":"rec","path":"vim.o.completefunc"},"emo":{"__kind":"rec","path":"vim.o.emoji"},"selectmode":{"_type":"string","__kind":"var","_name":"vim.o.selectmode"},"completeopt":{"_type":"string","__kind":"var","_name":"vim.o.completeopt"},"cot":{"__kind":"rec","path":"vim.o.completeopt"},"gfn":{"__kind":"rec","path":"vim.o.guifont"},"sessionoptions":{"_type":"string","__kind":"var","_name":"vim.o.sessionoptions"},"ssop":{"__kind":"rec","path":"vim.o.sessionoptions"},"completeslash":{"_type":"string","__kind":"var","_name":"vim.o.completeslash"},"csl":{"__kind":"rec","path":"vim.o.completeslash"},"opfunc":{"__kind":"rec","path":"vim.o.operatorfunc"},"ai":{"__kind":"rec","path":"vim.o.autoindent"},"vbs":{"__kind":"rec","path":"vim.o.verbose"},"guioptions":{"_type":"string","__kind":"var","_name":"vim.o.guioptions"},"copyindent":{"_type":"boolean","__kind":"var","_name":"vim.o.copyindent"},"ci":{"__kind":"rec","path":"vim.o.copyindent"},"sdf":{"__kind":"rec","path":"vim.o.shadafile"},"gtl":{"__kind":"rec","path":"vim.o.guitablabel"},"cpoptions":{"_type":"string","__kind":"var","_name":"vim.o.cpoptions"},"cpo":{"__kind":"rec","path":"vim.o.cpoptions"},"eb":{"__kind":"rec","path":"vim.o.errorbells"},"nuw":{"__kind":"rec","path":"vim.o.numberwidth"},"shellcmdflag":{"_type":"string","__kind":"var","_name":"vim.o.shellcmdflag"},"cursorbind":{"_type":"boolean","__kind":"var","_name":"vim.o.cursorbind"},"crb":{"__kind":"rec","path":"vim.o.cursorbind"},"lsp":{"__kind":"rec","path":"vim.o.linespace"},"ef":{"__kind":"rec","path":"vim.o.errorfile"},"nu":{"__kind":"rec","path":"vim.o.number"},"cursorcolumn":{"_type":"boolean","__kind":"var","_name":"vim.o.cursorcolumn"},"cuc":{"__kind":"rec","path":"vim.o.cursorcolumn"},"filetype":{"_type":"string","__kind":"var","_name":"vim.o.filetype"},"keymap":{"_type":"string","__kind":"var","_name":"vim.o.keymap"},"cursorline":{"_type":"boolean","__kind":"var","_name":"vim.o.cursorline"},"highlight":{"_type":"string","__kind":"var","_name":"vim.o.highlight"},"shq":{"__kind":"rec","path":"vim.o.shellquote"},"cursorlineopt":{"_type":"string","__kind":"var","_name":"vim.o.cursorlineopt"},"uc":{"__kind":"rec","path":"vim.o.updatecount"},"shellredir":{"_type":"string","__kind":"var","_name":"vim.o.shellredir"},"srr":{"__kind":"rec","path":"vim.o.shellredir"},"hidden":{"_type":"boolean","__kind":"var","_name":"vim.o.hidden"},"ur":{"__kind":"rec","path":"vim.o.undoreload"},"shellslash":{"_type":"boolean","__kind":"var","_name":"vim.o.shellslash"},"ssl":{"__kind":"rec","path":"vim.o.shellslash"},"window":{"_type":"number","__kind":"var","_name":"vim.o.window"},"hkp":{"__kind":"rec","path":"vim.o.hkmapp"},"shelltemp":{"_type":"boolean","__kind":"var","_name":"vim.o.shelltemp"},"stmp":{"__kind":"rec","path":"vim.o.shelltemp"},"hlsearch":{"_type":"boolean","__kind":"var","_name":"vim.o.hlsearch"},"dictionary":{"_type":"string","__kind":"var","_name":"vim.o.dictionary"},"shellxquote":{"_type":"string","__kind":"var","_name":"vim.o.shellxquote"},"sxq":{"__kind":"rec","path":"vim.o.shellxquote"},"equalprg":{"_type":"string","__kind":"var","_name":"vim.o.equalprg"},"imd":{"__kind":"rec","path":"vim.o.imdisable"},"shellxescape":{"_type":"string","__kind":"var","_name":"vim.o.shellxescape"},"sxe":{"__kind":"rec","path":"vim.o.shellxescape"},"mousehide":{"_type":"boolean","__kind":"var","_name":"vim.o.mousehide"},"mousefocus":{"_type":"boolean","__kind":"var","_name":"vim.o.mousefocus"},"shiftround":{"_type":"boolean","__kind":"var","_name":"vim.o.shiftround"},"sr":{"__kind":"rec","path":"vim.o.shiftround"},"modifiable":{"_type":"boolean","__kind":"var","_name":"vim.o.modifiable"},"modeline":{"_type":"boolean","__kind":"var","_name":"vim.o.modeline"},"mfd":{"__kind":"rec","path":"vim.o.maxfuncdepth"},"_name":"vim.o","shortmess":{"_type":"string","__kind":"var","_name":"vim.o.shortmess"},"shm":{"__kind":"rec","path":"vim.o.shortmess"},"lisp":{"_type":"boolean","__kind":"var","_name":"vim.o.lisp"},"cc":{"__kind":"rec","path":"vim.o.colorcolumn"},"com":{"__kind":"rec","path":"vim.o.comments"},"showbreak":{"_type":"string","__kind":"var","_name":"vim.o.showbreak"},"sbr":{"__kind":"rec","path":"vim.o.showbreak"},"title":{"_type":"boolean","__kind":"var","_name":"vim.o.title"},"go":{"__kind":"rec","path":"vim.o.guioptions"},"showcmd":{"_type":"boolean","__kind":"var","_name":"vim.o.showcmd"},"bo":{"__kind":"rec","path":"vim.o.belloff"},"spell":{"_type":"boolean","__kind":"var","_name":"vim.o.spell"},"showcmdloc":{"_type":"string","__kind":"var","_name":"vim.o.showcmdloc"},"sloc":{"__kind":"rec","path":"vim.o.showcmdloc"},"winhighlight":{"_type":"string","__kind":"var","_name":"vim.o.winhighlight"},"lcs":{"__kind":"rec","path":"vim.o.listchars"},"showfulltag":{"_type":"boolean","__kind":"var","_name":"vim.o.showfulltag"},"sft":{"__kind":"rec","path":"vim.o.showfulltag"},"to":{"__kind":"rec","path":"vim.o.timeout"},"top":{"__kind":"rec","path":"vim.o.tildeop"},"showmatch":{"_type":"boolean","__kind":"var","_name":"vim.o.showmatch"},"tildeop":{"_type":"boolean","__kind":"var","_name":"vim.o.tildeop"},"tsrfu":{"__kind":"rec","path":"vim.o.thesaurusfunc"},"showmode":{"_type":"boolean","__kind":"var","_name":"vim.o.showmode"},"shiftwidth":{"_type":"number","__kind":"var","_name":"vim.o.shiftwidth"},"tabstop":{"_type":"number","__kind":"var","_name":"vim.o.tabstop"},"showtabline":{"_type":"number","__kind":"var","_name":"vim.o.showtabline"},"stal":{"__kind":"rec","path":"vim.o.showtabline"},"expandtab":{"_type":"boolean","__kind":"var","_name":"vim.o.expandtab"},"_type":"table","sidescroll":{"_type":"number","__kind":"var","_name":"vim.o.sidescroll"},"thesaurusfunc":{"_type":"string","__kind":"var","_name":"vim.o.thesaurusfunc"},"lrm":{"__kind":"rec","path":"vim.o.langremap"},"sidescrolloff":{"_type":"number","__kind":"var","_name":"vim.o.sidescrolloff"},"siso":{"__kind":"rec","path":"vim.o.sidescrolloff"},"ls":{"__kind":"rec","path":"vim.o.laststatus"},"tsr":{"__kind":"rec","path":"vim.o.thesaurus"},"signcolumn":{"_type":"string","__kind":"var","_name":"vim.o.signcolumn"},"lazyredraw":{"_type":"boolean","__kind":"var","_name":"vim.o.lazyredraw"},"lz":{"__kind":"rec","path":"vim.o.lazyredraw"},"thesaurus":{"_type":"string","__kind":"var","_name":"vim.o.thesaurus"},"autowrite":{"_type":"boolean","__kind":"var","_name":"vim.o.autowrite"},"linebreak":{"_type":"boolean","__kind":"var","_name":"vim.o.linebreak"},"lbr":{"__kind":"rec","path":"vim.o.linebreak"},"textwidth":{"_type":"number","__kind":"var","_name":"vim.o.textwidth"},"terse":{"_type":"boolean","__kind":"var","_name":"vim.o.terse"},"bg":{"__kind":"rec","path":"vim.o.background"},"termpastefilter":{"_type":"string","__kind":"var","_name":"vim.o.termpastefilter"},"linespace":{"_type":"number","__kind":"var","_name":"vim.o.linespace"},"tgc":{"__kind":"rec","path":"vim.o.termguicolors"},"termguicolors":{"_type":"boolean","__kind":"var","_name":"vim.o.termguicolors"},"awa":{"__kind":"rec","path":"vim.o.autowriteall"},"backup":{"_type":"boolean","__kind":"var","_name":"vim.o.backup"},"lispoptions":{"_type":"string","__kind":"var","_name":"vim.o.lispoptions"},"lop":{"__kind":"rec","path":"vim.o.lispoptions"},"bs":{"__kind":"rec","path":"vim.o.backspace"},"hl":{"__kind":"rec","path":"vim.o.highlight"},"lispwords":{"_type":"string","__kind":"var","_name":"vim.o.lispwords"},"lw":{"__kind":"rec","path":"vim.o.lispwords"},"foldtext":{"_type":"string","__kind":"var","_name":"vim.o.foldtext"},"tagstack":{"_type":"boolean","__kind":"var","_name":"vim.o.tagstack"},"cinoptions":{"_type":"string","__kind":"var","_name":"vim.o.cinoptions"},"tags":{"_type":"string","__kind":"var","_name":"vim.o.tags"},"slm":{"__kind":"rec","path":"vim.o.selectmode"},"tagrelative":{"_type":"boolean","__kind":"var","_name":"vim.o.tagrelative"},"tl":{"__kind":"rec","path":"vim.o.taglength"},"cinscopedecls":{"_type":"string","__kind":"var","_name":"vim.o.cinscopedecls"},"loadplugins":{"_type":"boolean","__kind":"var","_name":"vim.o.loadplugins"},"lpl":{"__kind":"rec","path":"vim.o.loadplugins"},"tc":{"__kind":"rec","path":"vim.o.tagcase"},"tagcase":{"_type":"string","__kind":"var","_name":"vim.o.tagcase"},"magic":{"_type":"boolean","__kind":"var","_name":"vim.o.magic"},"cmdheight":{"_type":"number","__kind":"var","_name":"vim.o.cmdheight"},"tagbsearch":{"_type":"boolean","__kind":"var","_name":"vim.o.tagbsearch"},"makeef":{"_type":"string","__kind":"var","_name":"vim.o.makeef"},"mef":{"__kind":"rec","path":"vim.o.makeef"},"deco":{"__kind":"rec","path":"vim.o.delcombine"},"tpm":{"__kind":"rec","path":"vim.o.tabpagemax"},"makeencoding":{"_type":"string","__kind":"var","_name":"vim.o.makeencoding"},"menc":{"__kind":"rec","path":"vim.o.makeencoding"},"tabpagemax":{"_type":"number","__kind":"var","_name":"vim.o.tabpagemax"},"sb":{"__kind":"rec","path":"vim.o.splitbelow"},"makeprg":{"_type":"string","__kind":"var","_name":"vim.o.makeprg"},"tabline":{"_type":"string","__kind":"var","_name":"vim.o.tabline"},"tfu":{"__kind":"rec","path":"vim.o.tagfunc"},"matchpairs":{"_type":"string","__kind":"var","_name":"vim.o.matchpairs"},"mps":{"__kind":"rec","path":"vim.o.matchpairs"},"syn":{"__kind":"rec","path":"vim.o.syntax"},"laststatus":{"_type":"number","__kind":"var","_name":"vim.o.laststatus"},"scl":{"__kind":"rec","path":"vim.o.signcolumn"},"matchtime":{"_type":"number","__kind":"var","_name":"vim.o.matchtime"},"smartcase":{"_type":"boolean","__kind":"var","_name":"vim.o.smartcase"},"scs":{"__kind":"rec","path":"vim.o.smartcase"},"maxcombine":{"_type":"number","__kind":"var","_name":"vim.o.maxcombine"},"mco":{"__kind":"rec","path":"vim.o.maxcombine"},"smartindent":{"_type":"boolean","__kind":"var","_name":"vim.o.smartindent"},"smc":{"__kind":"rec","path":"vim.o.synmaxcol"},"maxfuncdepth":{"_type":"number","__kind":"var","_name":"vim.o.maxfuncdepth"},"conceallevel":{"_type":"number","__kind":"var","_name":"vim.o.conceallevel"},"concealcursor":{"_type":"string","__kind":"var","_name":"vim.o.concealcursor"},"foldenable":{"_type":"boolean","__kind":"var","_name":"vim.o.foldenable"},"maxmapdepth":{"_type":"number","__kind":"var","_name":"vim.o.maxmapdepth"},"bufhidden":{"_type":"string","__kind":"var","_name":"vim.o.bufhidden"},"sts":{"__kind":"rec","path":"vim.o.softtabstop"},"synmaxcol":{"_type":"number","__kind":"var","_name":"vim.o.synmaxcol"},"maxmempattern":{"_type":"number","__kind":"var","_name":"vim.o.maxmempattern"},"swb":{"__kind":"rec","path":"vim.o.switchbuf"},"spellcapcheck":{"_type":"string","__kind":"var","_name":"vim.o.spellcapcheck"},"menuitems":{"_type":"number","__kind":"var","_name":"vim.o.menuitems"},"ft":{"__kind":"rec","path":"vim.o.filetype"},"switchbuf":{"_type":"string","__kind":"var","_name":"vim.o.switchbuf"},"swf":{"__kind":"rec","path":"vim.o.swapfile"},"mkspellmem":{"_type":"string","__kind":"var","_name":"vim.o.mkspellmem"},"msm":{"__kind":"rec","path":"vim.o.mkspellmem"},"swapfile":{"_type":"boolean","__kind":"var","_name":"vim.o.swapfile"},"sua":{"__kind":"rec","path":"vim.o.suffixesadd"},"spelllang":{"_type":"string","__kind":"var","_name":"vim.o.spelllang"},"spl":{"__kind":"rec","path":"vim.o.spelllang"},"suffixesadd":{"_type":"string","__kind":"var","_name":"vim.o.suffixesadd"},"mle":{"__kind":"rec","path":"vim.o.modelineexpr"},"aleph":{"_type":"number","__kind":"var","_name":"vim.o.aleph"},"sps":{"__kind":"rec","path":"vim.o.spellsuggest"},"modelines":{"_type":"number","__kind":"var","_name":"vim.o.modelines"},"mls":{"__kind":"rec","path":"vim.o.modelines"},"arabic":{"_type":"boolean","__kind":"var","_name":"vim.o.arabic"},"arab":{"__kind":"rec","path":"vim.o.arabic"},"ma":{"__kind":"rec","path":"vim.o.modifiable"},"su":{"__kind":"rec","path":"vim.o.suffixes"},"arabicshape":{"_type":"boolean","__kind":"var","_name":"vim.o.arabicshape"},"arshape":{"__kind":"rec","path":"vim.o.arabicshape"},"suffixes":{"_type":"string","__kind":"var","_name":"vim.o.suffixes"},"stl":{"__kind":"rec","path":"vim.o.statusline"},"more":{"_type":"boolean","__kind":"var","_name":"vim.o.more"},"spk":{"__kind":"rec","path":"vim.o.splitkeep"},"diff":{"_type":"boolean","__kind":"var","_name":"vim.o.diff"},"allowrevins":{"_type":"boolean","__kind":"var","_name":"vim.o.allowrevins"},"ari":{"__kind":"rec","path":"vim.o.allowrevins"},"spr":{"__kind":"rec","path":"vim.o.splitright"},"fdl":{"__kind":"rec","path":"vim.o.foldlevel"},"ambiwidth":{"_type":"string","__kind":"var","_name":"vim.o.ambiwidth"},"mousef":{"__kind":"rec","path":"vim.o.mousefocus"},"fdls":{"__kind":"rec","path":"vim.o.foldlevelstart"},"statusline":{"_type":"string","__kind":"var","_name":"vim.o.statusline"},"autochdir":{"_type":"boolean","__kind":"var","_name":"vim.o.autochdir"},"mh":{"__kind":"rec","path":"vim.o.mousehide"},"fmr":{"__kind":"rec","path":"vim.o.foldmarker"},"mousemodel":{"_type":"string","__kind":"var","_name":"vim.o.mousemodel"},"mousem":{"__kind":"rec","path":"vim.o.mousemodel"},"foldmethod":{"_type":"string","__kind":"var","_name":"vim.o.foldmethod"},"fdm":{"__kind":"rec","path":"vim.o.foldmethod"},"autoread":{"_type":"boolean","__kind":"var","_name":"vim.o.autoread"},"mousemoveevent":{"_type":"boolean","__kind":"var","_name":"vim.o.mousemoveevent"},"mousemev":{"__kind":"rec","path":"vim.o.mousemoveevent"},"fml":{"__kind":"rec","path":"vim.o.foldminlines"},"culopt":{"__kind":"rec","path":"vim.o.cursorlineopt"},"foldnestmax":{"_type":"number","__kind":"var","_name":"vim.o.foldnestmax"},"fdn":{"__kind":"rec","path":"vim.o.foldnestmax"},"stc":{"__kind":"rec","path":"vim.o.statuscolumn"},"autowriteall":{"_type":"boolean","__kind":"var","_name":"vim.o.autowriteall"},"fdo":{"__kind":"rec","path":"vim.o.foldopen"},"mouseshape":{"_type":"string","__kind":"var","_name":"vim.o.mouseshape"},"mouses":{"__kind":"rec","path":"vim.o.mouseshape"},"background":{"_type":"string","__kind":"var","_name":"vim.o.background"},"delcombine":{"_type":"boolean","__kind":"var","_name":"vim.o.delcombine"},"mouset":{"__kind":"rec","path":"vim.o.mousetime"},"statuscolumn":{"_type":"string","__kind":"var","_name":"vim.o.statuscolumn"},"startofline":{"_type":"boolean","__kind":"var","_name":"vim.o.startofline"},"nrformats":{"_type":"string","__kind":"var","_name":"vim.o.nrformats"},"formatoptions":{"_type":"string","__kind":"var","_name":"vim.o.formatoptions"},"fo":{"__kind":"rec","path":"vim.o.formatoptions"},"splitright":{"_type":"boolean","__kind":"var","_name":"vim.o.splitright"},"splitkeep":{"_type":"string","__kind":"var","_name":"vim.o.splitkeep"},"diffexpr":{"_type":"string","__kind":"var","_name":"vim.o.diffexpr"},"formatlistpat":{"_type":"string","__kind":"var","_name":"vim.o.formatlistpat"},"flp":{"__kind":"rec","path":"vim.o.formatlistpat"},"bk":{"__kind":"rec","path":"vim.o.backup"},"diffopt":{"_type":"string","__kind":"var","_name":"vim.o.diffopt"},"dip":{"__kind":"rec","path":"vim.o.diffopt"},"fp":{"__kind":"rec","path":"vim.o.formatprg"},"tal":{"__kind":"rec","path":"vim.o.tabline"},"opendevice":{"_type":"boolean","__kind":"var","_name":"vim.o.opendevice"},"fsync":{"_type":"boolean","__kind":"var","_name":"vim.o.fsync"},"dg":{"__kind":"rec","path":"vim.o.digraph"},"operatorfunc":{"_type":"string","__kind":"var","_name":"vim.o.operatorfunc"},"gdefault":{"_type":"boolean","__kind":"var","_name":"vim.o.gdefault"},"splitbelow":{"_type":"boolean","__kind":"var","_name":"vim.o.splitbelow"},"spo":{"__kind":"rec","path":"vim.o.spelloptions"},"grepformat":{"_type":"string","__kind":"var","_name":"vim.o.grepformat"},"gfm":{"__kind":"rec","path":"vim.o.grepformat"},"spelloptions":{"_type":"string","__kind":"var","_name":"vim.o.spelloptions"},"paragraphs":{"_type":"string","__kind":"var","_name":"vim.o.paragraphs"},"ead":{"__kind":"rec","path":"vim.o.eadirection"},"grepprg":{"_type":"string","__kind":"var","_name":"vim.o.grepprg"},"spellsuggest":{"_type":"string","__kind":"var","_name":"vim.o.spellsuggest"},"edcompatible":{"_type":"boolean","__kind":"var","_name":"vim.o.edcompatible"},"ed":{"__kind":"rec","path":"vim.o.edcompatible"},"emoji":{"_type":"boolean","__kind":"var","_name":"vim.o.emoji"},"pastetoggle":{"_type":"string","__kind":"var","_name":"vim.o.pastetoggle"},"guicursor":{"_type":"string","__kind":"var","_name":"vim.o.guicursor"},"gcr":{"__kind":"rec","path":"vim.o.guicursor"},"patchexpr":{"_type":"string","__kind":"var","_name":"vim.o.patchexpr"},"pex":{"__kind":"rec","path":"vim.o.patchexpr"},"spf":{"__kind":"rec","path":"vim.o.spellfile"},"guifont":{"_type":"string","__kind":"var","_name":"vim.o.guifont"},"patchmode":{"_type":"string","__kind":"var","_name":"vim.o.patchmode"},"eof":{"__kind":"rec","path":"vim.o.endoffile"},"spellfile":{"_type":"string","__kind":"var","_name":"vim.o.spellfile"},"pa":{"__kind":"rec","path":"vim.o.path"},"endofline":{"_type":"boolean","__kind":"var","_name":"vim.o.endofline"},"spc":{"__kind":"rec","path":"vim.o.spellcapcheck"},"tm":{"__kind":"rec","path":"vim.o.timeoutlen"},"equalalways":{"_type":"boolean","__kind":"var","_name":"vim.o.equalalways"},"ea":{"__kind":"rec","path":"vim.o.equalalways"},"guitablabel":{"_type":"string","__kind":"var","_name":"vim.o.guitablabel"},"previewheight":{"_type":"number","__kind":"var","_name":"vim.o.previewheight"},"pvh":{"__kind":"rec","path":"vim.o.previewheight"},"guitabtooltip":{"_type":"string","__kind":"var","_name":"vim.o.guitabtooltip"},"gtt":{"__kind":"rec","path":"vim.o.guitabtooltip"},"previewwindow":{"_type":"boolean","__kind":"var","_name":"vim.o.previewwindow"},"pvw":{"__kind":"rec","path":"vim.o.previewwindow"},"hf":{"__kind":"rec","path":"vim.o.helpfile"},"softtabstop":{"_type":"number","__kind":"var","_name":"vim.o.softtabstop"},"sta":{"__kind":"rec","path":"vim.o.smarttab"},"pumblend":{"_type":"number","__kind":"var","_name":"vim.o.pumblend"},"pb":{"__kind":"rec","path":"vim.o.pumblend"},"prompt":{"_type":"boolean","__kind":"var","_name":"vim.o.prompt"},"smarttab":{"_type":"boolean","__kind":"var","_name":"vim.o.smarttab"},"pumheight":{"_type":"number","__kind":"var","_name":"vim.o.pumheight"},"ph":{"__kind":"rec","path":"vim.o.pumheight"},"efm":{"__kind":"rec","path":"vim.o.errorformat"},"cul":{"__kind":"rec","path":"vim.o.cursorline"},"pumwidth":{"_type":"number","__kind":"var","_name":"vim.o.pumwidth"},"pw":{"__kind":"rec","path":"vim.o.pumwidth"},"eventignore":{"_type":"string","__kind":"var","_name":"vim.o.eventignore"},"ei":{"__kind":"rec","path":"vim.o.eventignore"},"pyxversion":{"_type":"number","__kind":"var","_name":"vim.o.pyxversion"},"hkmap":{"_type":"boolean","__kind":"var","_name":"vim.o.hkmap"},"et":{"__kind":"rec","path":"vim.o.expandtab"},"quickfixtextfunc":{"_type":"string","__kind":"var","_name":"vim.o.quickfixtextfunc"},"qftf":{"__kind":"rec","path":"vim.o.quickfixtextfunc"},"exrc":{"_type":"boolean","__kind":"var","_name":"vim.o.exrc"},"hi":{"__kind":"rec","path":"vim.o.history"},"quoteescape":{"_type":"string","__kind":"var","_name":"vim.o.quoteescape"},"qe":{"__kind":"rec","path":"vim.o.quoteescape"},"hk":{"__kind":"rec","path":"vim.o.hkmap"},"hkmapp":{"_type":"boolean","__kind":"var","_name":"vim.o.hkmapp"},"readonly":{"_type":"boolean","__kind":"var","_name":"vim.o.readonly"},"fileencodings":{"_type":"string","__kind":"var","_name":"vim.o.fileencodings"},"fencs":{"__kind":"rec","path":"vim.o.fileencodings"},"hlg":{"__kind":"rec","path":"vim.o.helplang"},"redrawdebug":{"_type":"string","__kind":"var","_name":"vim.o.redrawdebug"},"rdb":{"__kind":"rec","path":"vim.o.redrawdebug"},"ff":{"__kind":"rec","path":"vim.o.fileformat"},"iconstring":{"_type":"string","__kind":"var","_name":"vim.o.iconstring"},"redrawtime":{"_type":"number","__kind":"var","_name":"vim.o.redrawtime"},"rdt":{"__kind":"rec","path":"vim.o.redrawtime"},"ignorecase":{"_type":"boolean","__kind":"var","_name":"vim.o.ignorecase"},"ffs":{"__kind":"rec","path":"vim.o.fileformats"},"regexpengine":{"_type":"number","__kind":"var","_name":"vim.o.regexpengine"},"re":{"__kind":"rec","path":"vim.o.regexpengine"},"imc":{"__kind":"rec","path":"vim.o.imcmdline"},"fileignorecase":{"_type":"boolean","__kind":"var","_name":"vim.o.fileignorecase"},"relativenumber":{"_type":"boolean","__kind":"var","_name":"vim.o.relativenumber"},"rnu":{"__kind":"rec","path":"vim.o.relativenumber"},"sw":{"__kind":"rec","path":"vim.o.shiftwidth"},"iminsert":{"_type":"number","__kind":"var","_name":"vim.o.iminsert"},"imi":{"__kind":"rec","path":"vim.o.iminsert"},"revins":{"_type":"boolean","__kind":"var","_name":"vim.o.revins"},"compatible":{"_type":"boolean","__kind":"var","_name":"vim.o.compatible"},"helpfile":{"_type":"string","__kind":"var","_name":"vim.o.helpfile"},"fixendofline":{"_type":"boolean","__kind":"var","_name":"vim.o.fixendofline"},"imsearch":{"_type":"number","__kind":"var","_name":"vim.o.imsearch"},"ims":{"__kind":"rec","path":"vim.o.imsearch"},"foldclose":{"_type":"string","__kind":"var","_name":"vim.o.foldclose"},"fcl":{"__kind":"rec","path":"vim.o.foldclose"},"cms":{"__kind":"rec","path":"vim.o.commentstring"},"dir":{"__kind":"rec","path":"vim.o.directory"},"foldcolumn":{"_type":"string","__kind":"var","_name":"vim.o.foldcolumn"},"fdc":{"__kind":"rec","path":"vim.o.foldcolumn"},"fileformats":{"_type":"string","__kind":"var","_name":"vim.o.fileformats"},"fen":{"__kind":"rec","path":"vim.o.foldenable"},"fdi":{"__kind":"rec","path":"vim.o.foldignore"},"foldexpr":{"_type":"string","__kind":"var","_name":"vim.o.foldexpr"},"fde":{"__kind":"rec","path":"vim.o.foldexpr"},"ep":{"__kind":"rec","path":"vim.o.equalprg"},"modelineexpr":{"_type":"boolean","__kind":"var","_name":"vim.o.modelineexpr"},"foldignore":{"_type":"string","__kind":"var","_name":"vim.o.foldignore"},"inex":{"__kind":"rec","path":"vim.o.includeexpr"},"buflisted":{"_type":"boolean","__kind":"var","_name":"vim.o.buflisted"},"colorcolumn":{"_type":"string","__kind":"var","_name":"vim.o.colorcolumn"},"incsearch":{"_type":"boolean","__kind":"var","_name":"vim.o.incsearch"},"is":{"__kind":"rec","path":"vim.o.incsearch"},"backspace":{"_type":"string","__kind":"var","_name":"vim.o.backspace"},"digraph":{"_type":"boolean","__kind":"var","_name":"vim.o.digraph"},"indentexpr":{"_type":"string","__kind":"var","_name":"vim.o.indentexpr"},"inde":{"__kind":"rec","path":"vim.o.indentexpr"},"cwh":{"__kind":"rec","path":"vim.o.cmdwinheight"},"cmdwinheight":{"_type":"number","__kind":"var","_name":"vim.o.cmdwinheight"},"indentkeys":{"_type":"string","__kind":"var","_name":"vim.o.indentkeys"},"indk":{"__kind":"rec","path":"vim.o.indentkeys"},"ambw":{"__kind":"rec","path":"vim.o.ambiwidth"},"fixeol":{"__kind":"rec","path":"vim.o.fixendofline"},"binary":{"_type":"boolean","__kind":"var","_name":"vim.o.binary"},"tbs":{"__kind":"rec","path":"vim.o.tagbsearch"},"aw":{"__kind":"rec","path":"vim.o.autowrite"},"insertmode":{"_type":"boolean","__kind":"var","_name":"vim.o.insertmode"},"im":{"__kind":"rec","path":"vim.o.insertmode"},"isfname":{"_type":"string","__kind":"var","_name":"vim.o.isfname"},"isf":{"__kind":"rec","path":"vim.o.isfname"},"mat":{"__kind":"rec","path":"vim.o.matchtime"},"define":{"_type":"string","__kind":"var","_name":"vim.o.define"},"taglength":{"_type":"number","__kind":"var","_name":"vim.o.taglength"},"undofile":{"_type":"boolean","__kind":"var","_name":"vim.o.undofile"},"isident":{"_type":"string","__kind":"var","_name":"vim.o.isident"},"isi":{"__kind":"rec","path":"vim.o.isident"},"cinwords":{"_type":"string","__kind":"var","_name":"vim.o.cinwords"},"endoffile":{"_type":"boolean","__kind":"var","_name":"vim.o.endoffile"},"tag":{"__kind":"rec","path":"vim.o.tags"},"eol":{"__kind":"rec","path":"vim.o.endofline"},"iskeyword":{"_type":"string","__kind":"var","_name":"vim.o.iskeyword"},"isk":{"__kind":"rec","path":"vim.o.iskeyword"},"ts":{"__kind":"rec","path":"vim.o.tabstop"},"tgst":{"__kind":"rec","path":"vim.o.tagstack"},"isprint":{"_type":"string","__kind":"var","_name":"vim.o.isprint"},"isp":{"__kind":"rec","path":"vim.o.isprint"},"termbidi":{"_type":"boolean","__kind":"var","_name":"vim.o.termbidi"},"tbidi":{"__kind":"rec","path":"vim.o.termbidi"},"dex":{"__kind":"rec","path":"vim.o.diffexpr"},"joinspaces":{"_type":"boolean","__kind":"var","_name":"vim.o.joinspaces"},"termencoding":{"_type":"string","__kind":"var","_name":"vim.o.termencoding"},"tenc":{"__kind":"rec","path":"vim.o.termencoding"},"jumpoptions":{"_type":"string","__kind":"var","_name":"vim.o.jumpoptions"},"jop":{"__kind":"rec","path":"vim.o.jumpoptions"},"pt":{"__kind":"rec","path":"vim.o.pastetoggle"},"fs":{"__kind":"rec","path":"vim.o.fsync"},"browsedir":{"_type":"string","__kind":"var","_name":"vim.o.browsedir"},"cpt":{"__kind":"rec","path":"vim.o.complete"},"tpf":{"__kind":"rec","path":"vim.o.termpastefilter"},"cp":{"__kind":"rec","path":"vim.o.compatible"},"cedit":{"_type":"string","__kind":"var","_name":"vim.o.cedit"},"keymodel":{"_type":"string","__kind":"var","_name":"vim.o.keymodel"},"km":{"__kind":"rec","path":"vim.o.keymodel"},"tw":{"__kind":"rec","path":"vim.o.textwidth"},"dict":{"__kind":"rec","path":"vim.o.dictionary"},"keywordprg":{"_type":"string","__kind":"var","_name":"vim.o.keywordprg"},"kp":{"__kind":"rec","path":"vim.o.keywordprg"},"ic":{"__kind":"rec","path":"vim.o.ignorecase"},"dy":{"__kind":"rec","path":"vim.o.display"},"fenc":{"__kind":"rec","path":"vim.o.fileencoding"},"langmap":{"_type":"string","__kind":"var","_name":"vim.o.langmap"},"lmap":{"__kind":"rec","path":"vim.o.langmap"},"complete":{"_type":"string","__kind":"var","_name":"vim.o.complete"},"ch":{"__kind":"rec","path":"vim.o.cmdheight"},"langmenu":{"_type":"string","__kind":"var","_name":"vim.o.langmenu"},"lm":{"__kind":"rec","path":"vim.o.langmenu"},"imdisable":{"_type":"boolean","__kind":"var","_name":"vim.o.imdisable"},"inccommand":{"_type":"string","__kind":"var","_name":"vim.o.inccommand"},"langnoremap":{"_type":"boolean","__kind":"var","_name":"vim.o.langnoremap"},"lnr":{"__kind":"rec","path":"vim.o.langnoremap"},"timeoutlen":{"_type":"number","__kind":"var","_name":"vim.o.timeoutlen"},"include":{"_type":"string","__kind":"var","_name":"vim.o.include"},"langremap":{"_type":"boolean","__kind":"var","_name":"vim.o.langremap"},"includeexpr":{"_type":"string","__kind":"var","_name":"vim.o.includeexpr"},"confirm":{"_type":"boolean","__kind":"var","_name":"vim.o.confirm"},"titlelen":{"_type":"number","__kind":"var","_name":"vim.o.titlelen"},"cindent":{"_type":"boolean","__kind":"var","_name":"vim.o.cindent"},"kmp":{"__kind":"rec","path":"vim.o.keymap"},"titleold":{"_type":"string","__kind":"var","_name":"vim.o.titleold"},"fillchars":{"_type":"string","__kind":"var","_name":"vim.o.fillchars"},"infercase":{"_type":"boolean","__kind":"var","_name":"vim.o.infercase"},"titlestring":{"_type":"string","__kind":"var","_name":"vim.o.titlestring"},"helpheight":{"_type":"number","__kind":"var","_name":"vim.o.helpheight"},"fex":{"__kind":"rec","path":"vim.o.formatexpr"},"ttimeout":{"_type":"boolean","__kind":"var","_name":"vim.o.ttimeout"},"mmd":{"__kind":"rec","path":"vim.o.maxmapdepth"},"mis":{"__kind":"rec","path":"vim.o.menuitems"},"ttimeoutlen":{"_type":"number","__kind":"var","_name":"vim.o.ttimeoutlen"},"ttm":{"__kind":"rec","path":"vim.o.ttimeoutlen"},"modified":{"_type":"boolean","__kind":"var","_name":"vim.o.modified"},"mouse":{"_type":"string","__kind":"var","_name":"vim.o.mouse"},"ttyfast":{"_type":"boolean","__kind":"var","_name":"vim.o.ttyfast"},"undodir":{"_type":"string","__kind":"var","_name":"vim.o.undodir"},"udir":{"__kind":"rec","path":"vim.o.undodir"},"fic":{"__kind":"rec","path":"vim.o.fileignorecase"},"imcmdline":{"_type":"boolean","__kind":"var","_name":"vim.o.imcmdline"},"udf":{"__kind":"rec","path":"vim.o.undofile"},"mousescroll":{"_type":"string","__kind":"var","_name":"vim.o.mousescroll"},"hls":{"__kind":"rec","path":"vim.o.hlsearch"},"undolevels":{"_type":"number","__kind":"var","_name":"vim.o.undolevels"},"ul":{"__kind":"rec","path":"vim.o.undolevels"},"fileencoding":{"_type":"string","__kind":"var","_name":"vim.o.fileencoding"},"history":{"_type":"number","__kind":"var","_name":"vim.o.history"},"undoreload":{"_type":"number","__kind":"var","_name":"vim.o.undoreload"},"foldlevel":{"_type":"number","__kind":"var","_name":"vim.o.foldlevel"},"report":{"_type":"number","__kind":"var","_name":"vim.o.report"},"hid":{"__kind":"rec","path":"vim.o.hidden"},"updatecount":{"_type":"number","__kind":"var","_name":"vim.o.updatecount"},"errorformat":{"_type":"string","__kind":"var","_name":"vim.o.errorformat"},"helplang":{"_type":"string","__kind":"var","_name":"vim.o.helplang"},"updatetime":{"_type":"number","__kind":"var","_name":"vim.o.updatetime"},"ut":{"__kind":"rec","path":"vim.o.updatetime"},"errorfile":{"_type":"string","__kind":"var","_name":"vim.o.errorfile"},"numberwidth":{"_type":"number","__kind":"var","_name":"vim.o.numberwidth"},"varsofttabstop":{"_type":"string","__kind":"var","_name":"vim.o.varsofttabstop"},"vsts":{"__kind":"rec","path":"vim.o.varsofttabstop"},"errorbells":{"_type":"boolean","__kind":"var","_name":"vim.o.errorbells"},"al":{"__kind":"rec","path":"vim.o.aleph"},"vartabstop":{"_type":"string","__kind":"var","_name":"vim.o.vartabstop"},"vts":{"__kind":"rec","path":"vim.o.vartabstop"},"ofu":{"__kind":"rec","path":"vim.o.omnifunc"},"odev":{"__kind":"rec","path":"vim.o.opendevice"},"gfw":{"__kind":"rec","path":"vim.o.guifontwide"},"guifontwide":{"_type":"string","__kind":"var","_name":"vim.o.guifontwide"},"verbosefile":{"_type":"string","__kind":"var","_name":"vim.o.verbosefile"},"vfile":{"__kind":"rec","path":"vim.o.verbosefile"},"packpath":{"_type":"string","__kind":"var","_name":"vim.o.packpath"},"enc":{"__kind":"rec","path":"vim.o.encoding"},"viewdir":{"_type":"string","__kind":"var","_name":"vim.o.viewdir"},"vdir":{"__kind":"rec","path":"vim.o.viewdir"},"eadirection":{"_type":"string","__kind":"var","_name":"vim.o.eadirection"},"paste":{"_type":"boolean","__kind":"var","_name":"vim.o.paste"},"number":{"_type":"boolean","__kind":"var","_name":"vim.o.number"},"vop":{"__kind":"rec","path":"vim.o.viewoptions"},"fdt":{"__kind":"rec","path":"vim.o.foldtext"},"foldopen":{"_type":"string","__kind":"var","_name":"vim.o.foldopen"},"foldminlines":{"_type":"number","__kind":"var","_name":"vim.o.foldminlines"},"vi":{"__kind":"rec","path":"vim.o.viminfo"},"autoindent":{"_type":"boolean","__kind":"var","_name":"vim.o.autoindent"},"viminfofile":{"_type":"string","__kind":"var","_name":"vim.o.viminfofile"},"vif":{"__kind":"rec","path":"vim.o.viminfofile"},"ml":{"__kind":"rec","path":"vim.o.modeline"},"virtualedit":{"_type":"string","__kind":"var","_name":"vim.o.virtualedit"},"ve":{"__kind":"rec","path":"vim.o.virtualedit"},"acd":{"__kind":"rec","path":"vim.o.autochdir"},"syntax":{"_type":"string","__kind":"var","_name":"vim.o.syntax"},"visualbell":{"_type":"boolean","__kind":"var","_name":"vim.o.visualbell"},"__kind":"var","shada":{"_type":"string","__kind":"var","_name":"vim.o.shada"},"columns":{"_type":"number","__kind":"var","_name":"vim.o.columns"},"shadafile":{"_type":"string","__kind":"var","_name":"vim.o.shadafile"},"tr":{"__kind":"rec","path":"vim.o.tagrelative"},"ww":{"__kind":"rec","path":"vim.o.whichwrap"},"listchars":{"_type":"string","__kind":"var","_name":"vim.o.listchars"},"shcf":{"__kind":"rec","path":"vim.o.shellcmdflag"},"js":{"__kind":"rec","path":"vim.o.joinspaces"},"shellquote":{"_type":"string","__kind":"var","_name":"vim.o.shellquote"},"wildchar":{"_type":"number","__kind":"var","_name":"vim.o.wildchar"},"wc":{"__kind":"rec","path":"vim.o.wildchar"}},"tbl_extend":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.tbl_extend"},"str_utf_pos":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.str_utf_pos"},"str_utf_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.str_utf_start"},"json":{"_VERSION":{"_type":"string","__kind":"var","_name":"vim.json._VERSION"},"decode":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.decode"},"encode":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.encode"},"encode_empty_table_as_object":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.encode_empty_table_as_object"},"decode_array_with_array_mt":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.decode_array_with_array_mt"},"encode_sparse_array":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.encode_sparse_array"},"encode_max_depth":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.encode_max_depth"},"decode_max_depth":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.decode_max_depth"},"encode_number_precision":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.encode_number_precision"},"encode_keep_buffer":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.encode_keep_buffer"},"encode_invalid_numbers":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.encode_invalid_numbers"},"decode_invalid_numbers":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.decode_invalid_numbers"},"encode_escape_forward_slash":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.encode_escape_forward_slash"},"new":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.json.new"},"null":{"_type":"userdata","__kind":"var","_name":"vim.json.null"},"empty_array_mt":{"_type":"table","__kind":"var","_name":"vim.json.empty_array_mt"},"array_mt":{"_type":"table","__kind":"var","_name":"vim.json.array_mt"},"empty_array":{"_type":"userdata","__kind":"var","_name":"vim.json.empty_array"},"_NAME":{"_type":"string","__kind":"var","_name":"vim.json._NAME"},"__kind":"var","_type":"table","_name":"vim.json"},"__kind":"var","_on_key":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim._on_key","_minArity":1},"on_key":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.on_key","_minArity":2},"_type":"table","register_keystroke_callback":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.register_keystroke_callback","_minArity":0},"notify":{"__kind":"var","maxArity":3,"_type":"function","_name":"vim.notify","_minArity":3},"type_idx":{"_type":"boolean","__kind":"var","_name":"vim.type_idx"},"v":{"_type":"table","__kind":"var","_name":"vim.v"},"val_idx":{"_type":"boolean","__kind":"var","_name":"vim.val_idx"},"log":{"levels":{"OFF":{"_type":"number","__kind":"var","_name":"vim.log.levels.OFF"},"INFO":{"_type":"number","__kind":"var","_name":"vim.log.levels.INFO"},"DEBUG":{"_type":"number","__kind":"var","_name":"vim.log.levels.DEBUG"},"WARN":{"_type":"number","__kind":"var","_name":"vim.log.levels.WARN"},"__kind":"var","ERROR":{"_type":"number","__kind":"var","_name":"vim.log.levels.ERROR"},"_type":"table","TRACE":{"_type":"number","__kind":"var","_name":"vim.log.levels.TRACE"},"_name":"vim.log.levels"},"_type":"table","__kind":"var","_name":"vim.log"},"types":{"dictionary":{"_type":"number","__kind":"var","_name":"vim.types.dictionary"},"float":{"_type":"number","__kind":"var","_name":"vim.types.float"},"array":{"_type":"number","__kind":"var","_name":"vim.types.array"},"__kind":"var","6":{"_type":"string","__kind":"var","_name":"vim.types.6"},"5":{"_type":"string","__kind":"var","_name":"vim.types.5"},"_type":"table","3":{"_type":"string","__kind":"var","_name":"vim.types.3"},"_name":"vim.types"},"iconv":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.iconv"},"tbl_values":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.tbl_values","_minArity":1},"in_fast_event":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.in_fast_event"},"endswith":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.endswith","_minArity":2},"is_callable":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.is_callable","_minArity":1},"_so_trails":{"1":{"_type":"string","__kind":"var","_name":"vim._so_trails.1"},"_type":"table","__kind":"var","_name":"vim._so_trails"},"defaulttable":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.defaulttable","_minArity":1},"api":{"nvim_get_color_map":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_color_map"},"nvim_get_context":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_context"},"nvim_load_context":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_load_context"},"nvim_get_mode":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_mode"},"nvim_get_keymap":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_keymap"},"nvim_set_keymap":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_keymap"},"nvim_del_keymap":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_del_keymap"},"nvim_get_chan_info":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_chan_info"},"nvim_list_chans":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_list_chans"},"nvim__id":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__id"},"nvim__id_array":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__id_array"},"nvim__id_dictionary":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__id_dictionary"},"nvim__id_float":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__id_float"},"nvim__stats":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__stats"},"nvim_list_uis":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_list_uis"},"nvim_get_proc_children":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_proc_children"},"nvim_get_proc":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_proc"},"nvim_select_popupmenu_item":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_select_popupmenu_item"},"nvim__inspect_cell":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__inspect_cell"},"nvim__screenshot":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__screenshot"},"nvim__unpack":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__unpack"},"nvim_del_mark":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_del_mark"},"nvim_get_mark":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_mark"},"nvim_eval_statusline":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_eval_statusline"},"nvim_exec":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_exec"},"nvim_command":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_command"},"nvim_eval":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_eval"},"nvim_call_function":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_call_function"},"nvim_call_dict_function":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_call_dict_function"},"nvim_parse_expression":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_parse_expression"},"nvim_open_win":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_open_win"},"nvim_win_set_config":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_set_config"},"nvim_win_get_config":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_config"},"nvim_win_get_buf":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_buf"},"nvim_win_set_buf":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_set_buf"},"nvim_win_get_cursor":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_cursor"},"nvim_win_set_cursor":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_set_cursor"},"nvim_win_get_height":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_height"},"nvim_win_set_height":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_set_height"},"nvim_win_get_width":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_width"},"nvim_win_set_width":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_set_width"},"nvim_win_get_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_var"},"nvim_win_set_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_set_var"},"nvim_win_del_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_del_var"},"nvim_win_get_position":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_position"},"nvim_win_get_tabpage":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_tabpage"},"nvim_win_get_number":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_number"},"nvim_win_is_valid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_is_valid"},"nvim_win_hide":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_hide"},"nvim_win_close":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_close"},"nvim_win_call":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_call"},"nvim_win_set_hl_ns":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_set_hl_ns"},"_name":"vim.api","__kind":"var","_type":"table","nvim_get_autocmds":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_autocmds"},"nvim_create_autocmd":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_create_autocmd"},"nvim_del_autocmd":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_del_autocmd"},"nvim_clear_autocmds":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_clear_autocmds"},"nvim_create_augroup":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_create_augroup"},"nvim_del_augroup_by_id":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_del_augroup_by_id"},"nvim_del_augroup_by_name":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_del_augroup_by_name"},"nvim_exec_autocmds":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_exec_autocmds"},"nvim_buf_line_count":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_line_count"},"nvim_buf_attach":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_attach"},"nvim__buf_redraw_range":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__buf_redraw_range"},"nvim_buf_get_lines":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_lines"},"nvim_buf_set_lines":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_lines"},"nvim_buf_set_text":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_text"},"nvim_buf_get_text":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_text"},"nvim_buf_get_offset":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_offset"},"nvim_buf_get_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_var"},"nvim_buf_get_changedtick":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_changedtick"},"nvim_buf_get_keymap":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_keymap"},"nvim_buf_set_keymap":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_keymap"},"nvim_buf_del_keymap":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_del_keymap"},"nvim_buf_set_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_var"},"nvim_buf_del_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_del_var"},"nvim_buf_get_name":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_name"},"nvim_buf_set_name":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_name"},"nvim_buf_is_loaded":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_is_loaded"},"nvim_buf_delete":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_delete"},"nvim_buf_is_valid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_is_valid"},"nvim_buf_del_mark":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_del_mark"},"nvim_buf_set_mark":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_mark"},"nvim_buf_get_mark":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_mark"},"nvim_buf_call":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_call"},"nvim__buf_stats":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__buf_stats"},"nvim_parse_cmd":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_parse_cmd"},"nvim_cmd":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_cmd"},"nvim_create_user_command":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_create_user_command"},"nvim_del_user_command":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_del_user_command"},"nvim_buf_create_user_command":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_create_user_command"},"nvim_buf_del_user_command":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_del_user_command"},"nvim_get_commands":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_commands"},"nvim_buf_get_commands":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_commands"},"nvim_command_output":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_command_output"},"nvim_buf_get_number":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_number"},"nvim_buf_clear_highlight":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_clear_highlight"},"nvim_buf_set_virtual_text":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_virtual_text"},"nvim_create_namespace":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_create_namespace"},"nvim_get_namespaces":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_namespaces"},"nvim_buf_get_extmark_by_id":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_extmark_by_id"},"nvim_buf_get_extmarks":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_extmarks"},"nvim_buf_set_extmark":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_extmark"},"nvim_buf_del_extmark":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_del_extmark"},"nvim_buf_add_highlight":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_add_highlight"},"nvim_buf_clear_namespace":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_clear_namespace"},"nvim_set_decoration_provider":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_decoration_provider"},"nvim_get_option_value":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_option_value"},"nvim_set_option_value":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_option_value"},"nvim_get_all_options_info":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_all_options_info"},"nvim_get_option_info":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_option_info"},"nvim_set_option":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_option"},"nvim_get_option":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_option"},"nvim_buf_get_option":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_get_option"},"nvim_buf_set_option":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_buf_set_option"},"nvim_win_get_option":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_get_option"},"nvim_win_set_option":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_win_set_option"},"nvim_tabpage_list_wins":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_tabpage_list_wins"},"nvim_tabpage_get_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_tabpage_get_var"},"nvim_tabpage_set_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_tabpage_set_var"},"nvim_tabpage_del_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_tabpage_del_var"},"nvim_tabpage_get_win":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_tabpage_get_win"},"nvim_tabpage_get_number":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_tabpage_get_number"},"nvim_tabpage_is_valid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_tabpage_is_valid"},"nvim_get_hl_by_name":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_hl_by_name"},"nvim_get_hl_by_id":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_hl_by_id"},"nvim_get_hl_id_by_name":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_hl_id_by_name"},"nvim__get_hl_defs":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__get_hl_defs"},"nvim_set_hl":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_hl"},"nvim_set_hl_ns":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_hl_ns"},"nvim_set_hl_ns_fast":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_hl_ns_fast"},"nvim_feedkeys":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_feedkeys"},"nvim_input":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_input"},"nvim_input_mouse":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_input_mouse"},"nvim_replace_termcodes":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_replace_termcodes"},"nvim_notify":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_notify"},"nvim_strwidth":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_strwidth"},"nvim_list_runtime_paths":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_list_runtime_paths"},"nvim__runtime_inspect":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__runtime_inspect"},"nvim_get_runtime_file":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_runtime_file"},"nvim__get_lib_dir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__get_lib_dir"},"nvim__get_runtime":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim__get_runtime"},"nvim_set_current_dir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_current_dir"},"nvim_get_current_line":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_current_line"},"nvim_set_current_line":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_current_line"},"nvim_del_current_line":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_del_current_line"},"nvim_get_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_var"},"nvim_set_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_var"},"nvim_del_var":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_del_var"},"nvim_get_vvar":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_vvar"},"nvim_set_vvar":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_vvar"},"nvim_echo":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_echo"},"nvim_out_write":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_out_write"},"nvim_err_write":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_err_write"},"nvim_err_writeln":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_err_writeln"},"nvim_list_bufs":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_list_bufs"},"nvim_get_current_buf":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_current_buf"},"nvim_set_current_buf":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_current_buf"},"nvim_list_wins":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_list_wins"},"nvim_get_current_win":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_current_win"},"nvim_set_current_win":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_current_win"},"nvim_create_buf":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_create_buf"},"nvim_open_term":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_open_term"},"nvim_chan_send":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_chan_send"},"nvim_list_tabpages":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_list_tabpages"},"nvim_get_current_tabpage":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_current_tabpage"},"nvim_set_current_tabpage":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_set_current_tabpage"},"nvim_paste":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_paste"},"nvim_put":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_put"},"nvim_get_color_by_name":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.api.nvim_get_color_by_name"}},"regex":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.regex"},"paste":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.paste","_minArity":2},"schedule_wrap":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim.schedule_wrap","_minArity":1},"str_utf_end":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.str_utf_end"},"cmd":{"_type":"table","__kind":"var","_name":"vim.cmd"},"startswith":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.startswith","_minArity":2},"b":{"_type":"table","__kind":"var","_name":"vim.b"},"_submodules":{"F":{"_type":"boolean","__kind":"var","_name":"vim._submodules.F"},"diagnostic":{"_type":"boolean","__kind":"var","_name":"vim._submodules.diagnostic"},"highlight":{"_type":"boolean","__kind":"var","_name":"vim._submodules.highlight"},"inspect":{"_type":"boolean","__kind":"var","_name":"vim._submodules.inspect"},"keymap":{"_type":"boolean","__kind":"var","_name":"vim._submodules.keymap"},"fs":{"_type":"boolean","__kind":"var","_name":"vim._submodules.fs"},"_name":"vim._submodules","lsp":{"_type":"boolean","__kind":"var","_name":"vim._submodules.lsp"},"__kind":"var","treesitter":{"_type":"boolean","__kind":"var","_name":"vim._submodules.treesitter"},"ui":{"_type":"boolean","__kind":"var","_name":"vim._submodules.ui"},"_type":"table","health":{"_type":"boolean","__kind":"var","_name":"vim._submodules.health"},"filetype":{"_type":"boolean","__kind":"var","_name":"vim._submodules.filetype"}},"empty_dict":{"__kind":"var","maxArity":0,"_type":"function","_name":"vim.empty_dict","_minArity":0},"_load_package":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim._load_package","_minArity":1},"fn":{"settagstack":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.settagstack","_minArity":2},"win_getid":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.win_getid","_minArity":0},"byteidx":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.byteidx","_minArity":2},"reg_executing":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.reg_executing","_minArity":0},"funcref":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.funcref","_minArity":1},"col":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.col","_minArity":1},"insert":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.insert","_minArity":2},"remove":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.remove","_minArity":2},"sort":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.sort","_minArity":1},"map":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.map","_minArity":2},"setenv":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.setenv","_minArity":2},"input":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.input","_minArity":1},"bufnr":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.bufnr","_minArity":0},"execute":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.execute","_minArity":1},"rename":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.rename","_minArity":2},"getenv":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getenv","_minArity":1},"winnr":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.winnr","_minArity":0},"items":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.items","_minArity":1},"_name":"vim.fn","setloclist":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.setloclist","_minArity":2},"setqflist":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.setqflist","_minArity":1},"len":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.len","_minArity":1},"append":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.append","_minArity":2},"get":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.get","_minArity":2},"reverse":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.reverse","_minArity":1},"match":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.match","_minArity":2},"abs":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.abs","_minArity":1},"floor":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.floor","_minArity":1},"ceil":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.ceil","_minArity":1},"sqrt":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.sqrt","_minArity":1},"log10":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.log10","_minArity":1},"exp":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.exp","_minArity":1},"shiftwidth":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.shiftwidth","_minArity":0},"cos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.cos","_minArity":1},"__kind":"var","asin":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.asin","_minArity":1},"acos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.acos","_minArity":1},"_type":"table","sinh":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.sinh","_minArity":1},"cosh":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.cosh","_minArity":1},"tanh":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.tanh","_minArity":1},"log":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.log","_minArity":1},"atan2":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.atan2","_minArity":2},"pow":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.pow","_minArity":2},"fmod":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.fmod","_minArity":2},"sign_place":{"__kind":"var","_maxArity":5,"_type":"function","_name":"vim.fn.sign_place","_minArity":4},"min":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.min","_minArity":1},"max":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.max","_minArity":1},"inputsecret":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.inputsecret","_minArity":1},"line":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.line","_minArity":1},"matchfuzzy":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.matchfuzzy","_minArity":2},"sign_define":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.sign_define","_minArity":1},"values":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.values","_minArity":1},"fnameescape":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.fnameescape","_minArity":1},"join":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.join","_minArity":1},"jobstart":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.jobstart","_minArity":1},"localtime":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.localtime","_minArity":0},"list2blob":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.list2blob","_minArity":1},"getcwd":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.getcwd","_minArity":0},"line2byte":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.line2byte","_minArity":1},"libcallnr":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.libcallnr","_minArity":3},"getcompletion":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.getcompletion","_minArity":2},"last_buffer_nr":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.last_buffer_nr","_minArity":0},"getcmdscreenpos":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcmdscreenpos","_minArity":0},"json_encode":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.json_encode","_minArity":1},"getcmdline":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcmdline","_minArity":0},"copy":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.copy","_minArity":1},"jobwait":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.jobwait","_minArity":1},"id":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.id","_minArity":1},"range":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.range","_minArity":1},"add":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.add","_minArity":2},"jobstop":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.jobstop","_minArity":1},"bufload":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.bufload","_minArity":1},"jobsend":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.jobsend","_minArity":2},"jobpid":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.jobpid","_minArity":1},"setline":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.setline","_minArity":2},"bufwinid":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.bufwinid","_minArity":1},"bufexists":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.bufexists","_minArity":1},"byte2line":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.byte2line","_minArity":1},"mkdir":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.mkdir","_minArity":1},"complete":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.complete","_minArity":2},"tan":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.tan","_minArity":1},"cursor":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.cursor","_minArity":1},"empty":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.empty","_minArity":1},"getline":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.getline","_minArity":1},"findfile":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.findfile","_minArity":1},"exists":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.exists","_minArity":1},"indent":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.indent","_minArity":1},"pumvisible":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.pumvisible","_minArity":0},"fnamemodify":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.fnamemodify","_minArity":2},"getwinposx":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getwinposx","_minArity":0},"sign_unplace":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.sign_unplace","_minArity":1},"histget":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.histget","_minArity":1},"islocked":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.islocked","_minArity":1},"deepcopy":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.deepcopy","_minArity":1},"or":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.or","_minArity":2},"setbufvar":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.setbufvar","_minArity":3},"prompt_setcallback":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.prompt_setcallback","_minArity":2},"readdir":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.readdir","_minArity":1},"repeat":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.repeat","_minArity":2},"resolve":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.resolve","_minArity":1},"expand":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.expand","_minArity":1},"executable":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.executable","_minArity":1},"system":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.system","_minArity":1},"lispindent":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.lispindent","_minArity":1},"menu_get":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.menu_get","_minArity":1},"menu_info":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.menu_info","_minArity":1},"msgpackdump":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.msgpackdump","_minArity":1},"nextnonblank":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.nextnonblank","_minArity":1},"msgpackparse":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.msgpackparse","_minArity":1},"nr2char":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.nr2char","_minArity":1},"pathshorten":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.pathshorten","_minArity":1},"prevnonblank":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.prevnonblank","_minArity":1},"printf":{"_minArity":1,"_type":"function","__kind":"var","_name":"vim.fn.printf"},"prompt_getprompt":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.prompt_getprompt","_minArity":1},"and":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.and","_minArity":2},"prompt_setinterrupt":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.prompt_setinterrupt","_minArity":2},"prompt_setprompt":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.prompt_setprompt","_minArity":2},"iconv":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.iconv","_minArity":3},"pum_getpos":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.pum_getpos","_minArity":0},"py3eval":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.py3eval","_minArity":1},"pyeval":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.pyeval","_minArity":1},"bufloaded":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.bufloaded","_minArity":1},"keys":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.keys","_minArity":1},"function":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.function","_minArity":1},"isdirectory":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.isdirectory","_minArity":1},"buflisted":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.buflisted","_minArity":1},"rpcnotify":{"_minArity":2,"_type":"function","__kind":"var","_name":"vim.fn.rpcnotify"},"synID":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.synID","_minArity":3},"filter":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.filter","_minArity":2},"pyxeval":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.pyxeval","_minArity":1},"perleval":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.perleval","_minArity":1},"rand":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.rand","_minArity":0},"index":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.index","_minArity":2},"readblob":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.readblob","_minArity":1},"readfile":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.readfile","_minArity":1},"reduce":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.reduce","_minArity":2},"chdir":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.chdir","_minArity":1},"digraph_set":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.digraph_set","_minArity":2},"reg_recording":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.reg_recording","_minArity":0},"reg_recorded":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.reg_recorded","_minArity":0},"reltime":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.reltime","_minArity":0},"reltimefloat":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.reltimefloat","_minArity":1},"exepath":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.exepath","_minArity":1},"reltimestr":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.reltimestr","_minArity":1},"api_info":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.api_info","_minArity":0},"round":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.round","_minArity":1},"appendbufline":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.appendbufline","_minArity":3},"getpid":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getpid","_minArity":0},"argc":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.argc","_minArity":0},"argidx":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.argidx","_minArity":0},"arglistid":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.arglistid","_minArity":0},"argv":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.argv","_minArity":0},"assert_beeps":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.assert_beeps","_minArity":1},"assert_equal":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.assert_equal","_minArity":2},"assert_equalfile":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.assert_equalfile","_minArity":2},"assert_exception":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.assert_exception","_minArity":1},"assert_fails":{"__kind":"var","_maxArity":5,"_type":"function","_name":"vim.fn.assert_fails","_minArity":1},"assert_false":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.assert_false","_minArity":1},"assert_inrange":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.assert_inrange","_minArity":3},"assert_match":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.assert_match","_minArity":2},"assert_nobeep":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.assert_nobeep","_minArity":1},"assert_notequal":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.assert_notequal","_minArity":2},"assert_notmatch":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.assert_notmatch","_minArity":2},"char2nr":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.char2nr","_minArity":1},"assert_report":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.assert_report","_minArity":1},"assert_true":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.assert_true","_minArity":1},"blob2list":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.blob2list","_minArity":1},"byteidxcomp":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.byteidxcomp","_minArity":2},"browse":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.browse","_minArity":4},"browsedir":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.browsedir","_minArity":2},"getfsize":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getfsize","_minArity":1},"getftime":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getftime","_minArity":1},"getftype":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getftype","_minArity":1},"getjumplist":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.getjumplist","_minArity":0},"getloclist":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.getloclist","_minArity":1},"getmarklist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getmarklist","_minArity":0},"getmatches":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getmatches","_minArity":0},"getmousepos":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getmousepos","_minArity":0},"getqflist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getqflist","_minArity":0},"getreg":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.getreg","_minArity":0},"getreginfo":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getreginfo","_minArity":0},"getregtype":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getregtype","_minArity":0},"gettabinfo":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.gettabinfo","_minArity":0},"gettabvar":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.gettabvar","_minArity":2},"gettabwinvar":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.gettabwinvar","_minArity":3},"getscriptinfo":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getscriptinfo","_minArity":0},"gettagstack":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.gettagstack","_minArity":0},"gettext":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.gettext","_minArity":1},"getwininfo":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getwininfo","_minArity":0},"getwinpos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getwinpos","_minArity":0},"delete":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.delete","_minArity":1},"getwinposy":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getwinposy","_minArity":0},"getwinvar":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.getwinvar","_minArity":2},"glob":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.glob","_minArity":1},"glob2regpat":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.glob2regpat","_minArity":1},"globpath":{"__kind":"var","_maxArity":5,"_type":"function","_name":"vim.fn.globpath","_minArity":2},"has":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.has","_minArity":1},"has_key":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.has_key","_minArity":2},"haslocaldir":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.haslocaldir","_minArity":0},"hasmapto":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.hasmapto","_minArity":1},"highlightID":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.highlightID","_minArity":1},"setpos":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.setpos","_minArity":2},"highlight_exists":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.highlight_exists","_minArity":1},"buffer_exists":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.buffer_exists","_minArity":1},"histadd":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.histadd","_minArity":2},"histdel":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.histdel","_minArity":1},"getpos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getpos","_minArity":1},"histnr":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.histnr","_minArity":1},"hlID":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.hlID","_minArity":1},"hlexists":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.hlexists","_minArity":1},"hostname":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.hostname","_minArity":0},"indexof":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.indexof","_minArity":2},"inputdialog":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.inputdialog","_minArity":1},"inputrestore":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.inputrestore","_minArity":0},"inputsave":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.inputsave","_minArity":0},"mode":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.mode","_minArity":0},"interrupt":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.interrupt","_minArity":0},"invert":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.invert","_minArity":1},"isinf":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.isinf","_minArity":1},"getcmdtype":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcmdtype","_minArity":0},"isnan":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.isnan","_minArity":1},"jobclose":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.jobclose","_minArity":1},"rpcstop":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.rpcstop","_minArity":1},"rubyeval":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.rubyeval","_minArity":1},"jobresize":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.jobresize","_minArity":3},"screenchar":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.screenchar","_minArity":2},"screenchars":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.screenchars","_minArity":2},"screencol":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.screencol","_minArity":0},"screenpos":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.screenpos","_minArity":3},"screenrow":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.screenrow","_minArity":0},"screenstring":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.screenstring","_minArity":2},"search":{"__kind":"var","_maxArity":5,"_type":"function","_name":"vim.fn.search","_minArity":1},"searchcount":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.searchcount","_minArity":0},"searchdecl":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.searchdecl","_minArity":1},"searchpair":{"__kind":"var","_maxArity":7,"_type":"function","_name":"vim.fn.searchpair","_minArity":3},"searchpairpos":{"__kind":"var","_maxArity":7,"_type":"function","_name":"vim.fn.searchpairpos","_minArity":3},"searchpos":{"__kind":"var","_maxArity":5,"_type":"function","_name":"vim.fn.searchpos","_minArity":1},"serverlist":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.serverlist","_minArity":0},"serverstart":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.serverstart","_minArity":0},"list2str":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.list2str","_minArity":1},"setbufline":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.setbufline","_minArity":3},"luaeval":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.luaeval","_minArity":1},"setcellwidths":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.setcellwidths","_minArity":1},"setcharpos":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.setcharpos","_minArity":2},"setcharsearch":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.setcharsearch","_minArity":1},"matchadd":{"__kind":"var","_maxArity":5,"_type":"function","_name":"vim.fn.matchadd","_minArity":2},"matchaddpos":{"__kind":"var","_maxArity":5,"_type":"function","_name":"vim.fn.matchaddpos","_minArity":2},"setcursorcharpos":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.setcursorcharpos","_minArity":1},"matchdelete":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.matchdelete","_minArity":1},"split":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.split","_minArity":1},"call":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.call","_minArity":2},"matchfuzzypos":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.matchfuzzypos","_minArity":2},"matchlist":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.matchlist","_minArity":2},"matchstr":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.matchstr","_minArity":2},"matchstrpos":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.matchstrpos","_minArity":2},"sha256":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.sha256","_minArity":1},"shellescape":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.shellescape","_minArity":1},"sign_getplaced":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.sign_getplaced","_minArity":0},"sign_jump":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.sign_jump","_minArity":3},"sign_placelist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.sign_placelist","_minArity":1},"sign_undefine":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.sign_undefine","_minArity":0},"sign_unplacelist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.sign_unplacelist","_minArity":1},"simplify":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.simplify","_minArity":1},"sockconnect":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.sockconnect","_minArity":2},"soundfold":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.soundfold","_minArity":1},"stdioopen":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.stdioopen","_minArity":1},"spellbadword":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.spellbadword","_minArity":0},"spellsuggest":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.spellsuggest","_minArity":1},"srand":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.srand","_minArity":0},"str2float":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.str2float","_minArity":1},"str2list":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.str2list","_minArity":1},"str2nr":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.str2nr","_minArity":1},"strcharlen":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.strcharlen","_minArity":1},"strcharpart":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.strcharpart","_minArity":2},"strchars":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.strchars","_minArity":1},"strftime":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.strftime","_minArity":1},"strgetchar":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.strgetchar","_minArity":2},"stridx":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.stridx","_minArity":2},"strlen":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.strlen","_minArity":1},"strpart":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.strpart","_minArity":2},"strptime":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.strptime","_minArity":2},"strridx":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.strridx","_minArity":2},"strtrans":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.strtrans","_minArity":1},"strwidth":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.strwidth","_minArity":1},"submatch":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.submatch","_minArity":1},"substitute":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.substitute","_minArity":4},"swapinfo":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.swapinfo","_minArity":1},"timer_start":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.timer_start","_minArity":2},"timer_stop":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.timer_stop","_minArity":1},"synIDattr":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.synIDattr","_minArity":2},"synIDtrans":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.synIDtrans","_minArity":1},"synconcealed":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.synconcealed","_minArity":2},"synstack":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.synstack","_minArity":2},"systemlist":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.systemlist","_minArity":1},"tabpagebuflist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.tabpagebuflist","_minArity":0},"tabpagenr":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.tabpagenr","_minArity":0},"tabpagewinnr":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.tabpagewinnr","_minArity":1},"tagfiles":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.tagfiles","_minArity":0},"taglist":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.taglist","_minArity":1},"tempname":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.tempname","_minArity":0},"termopen":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.termopen","_minArity":1},"test_garbagecollect_now":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.test_garbagecollect_now","_minArity":0},"test_write_list_log":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.test_write_list_log","_minArity":1},"timer_info":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.timer_info","_minArity":0},"timer_pause":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.timer_pause","_minArity":2},"timer_stopall":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.timer_stopall","_minArity":0},"tolower":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.tolower","_minArity":1},"toupper":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.toupper","_minArity":1},"trunc":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.trunc","_minArity":1},"undofile":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.undofile","_minArity":1},"undotree":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.undotree","_minArity":0},"uniq":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.uniq","_minArity":1},"virtcol":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.virtcol","_minArity":1},"virtcol2col":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.virtcol2col","_minArity":3},"visualmode":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.visualmode","_minArity":0},"wildmenumode":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.wildmenumode","_minArity":0},"win_execute":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.win_execute","_minArity":2},"win_findbuf":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.win_findbuf","_minArity":1},"win_gettype":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.win_gettype","_minArity":0},"win_gotoid":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.win_gotoid","_minArity":1},"win_id2tabwin":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.win_id2tabwin","_minArity":1},"win_id2win":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.win_id2win","_minArity":1},"win_move_separator":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.win_move_separator","_minArity":2},"win_move_statusline":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.win_move_statusline","_minArity":2},"win_screenpos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.win_screenpos","_minArity":1},"win_splitmove":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.win_splitmove","_minArity":2},"winbufnr":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.winbufnr","_minArity":1},"windowsversion":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.windowsversion","_minArity":0},"winlayout":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.winlayout","_minArity":0},"winrestcmd":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.winrestcmd","_minArity":0},"winrestview":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.winrestview","_minArity":1},"winsaveview":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.winsaveview","_minArity":0},"winwidth":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.winwidth","_minArity":1},"wordcount":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.wordcount","_minArity":0},"writefile":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.writefile","_minArity":2},"buffer_name":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.buffer_name","_minArity":0},"rpcrequest":{"_minArity":2,"_type":"function","__kind":"var","_name":"vim.fn.rpcrequest"},"buffer_number":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.buffer_number","_minArity":0},"rpcstart":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.rpcstart","_minArity":1},"bufname":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.bufname","_minArity":0},"bufwinnr":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.bufwinnr","_minArity":1},"bufadd":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.bufadd","_minArity":1},"stdpath":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.stdpath","_minArity":1},"changenr":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.changenr","_minArity":0},"chanclose":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.chanclose","_minArity":1},"chansend":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.chansend","_minArity":2},"count":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.count","_minArity":2},"charclass":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.charclass","_minArity":1},"charcol":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.charcol","_minArity":1},"charidx":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.charidx","_minArity":2},"cindent":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.cindent","_minArity":1},"clearmatches":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.clearmatches","_minArity":0},"complete_add":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.complete_add","_minArity":1},"complete_check":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.complete_check","_minArity":0},"complete_info":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.complete_info","_minArity":0},"confirm":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.confirm","_minArity":1},"ctxget":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.ctxget","_minArity":0},"ctxpop":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.ctxpop","_minArity":0},"ctxpush":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.ctxpush","_minArity":0},"ctxset":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.ctxset","_minArity":1},"ctxsize":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.ctxsize","_minArity":0},"debugbreak":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.debugbreak","_minArity":1},"deletebufline":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.deletebufline","_minArity":2},"dictwatcheradd":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.dictwatcheradd","_minArity":3},"dictwatcherdel":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.dictwatcherdel","_minArity":3},"did_filetype":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.did_filetype","_minArity":0},"diff_filler":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.diff_filler","_minArity":1},"diff_hlID":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.diff_hlID","_minArity":2},"digraph_get":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.digraph_get","_minArity":1},"digraph_getlist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.digraph_getlist","_minArity":0},"strdisplaywidth":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.strdisplaywidth","_minArity":1},"digraph_setlist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.digraph_setlist","_minArity":1},"escape":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.escape","_minArity":2},"eventhandler":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.eventhandler","_minArity":0},"xor":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.xor","_minArity":2},"expandcmd":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.expandcmd","_minArity":1},"extend":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.extend","_minArity":2},"extendnew":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.extendnew","_minArity":2},"feedkeys":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.feedkeys","_minArity":1},"file_readable":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.file_readable","_minArity":1},"swapname":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.swapname","_minArity":1},"filereadable":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.filereadable","_minArity":1},"filewritable":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.filewritable","_minArity":1},"finddir":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.finddir","_minArity":1},"eval":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.eval","_minArity":1},"flatten":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.flatten","_minArity":1},"flattennew":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.flattennew","_minArity":1},"float2nr":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.float2nr","_minArity":1},"foldclosed":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.foldclosed","_minArity":1},"foldclosedend":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.foldclosedend","_minArity":1},"foldlevel":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.foldlevel","_minArity":1},"foldtext":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.foldtext","_minArity":0},"foldtextresult":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.foldtextresult","_minArity":1},"foreground":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.foreground","_minArity":0},"fullcommand":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.fullcommand","_minArity":1},"garbagecollect":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.garbagecollect","_minArity":0},"getbufinfo":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getbufinfo","_minArity":0},"getbufline":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.getbufline","_minArity":2},"getbufoneline":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.getbufoneline","_minArity":2},"getbufvar":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.getbufvar","_minArity":2},"getcellwidths":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcellwidths","_minArity":0},"getchangelist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getchangelist","_minArity":0},"libcall":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.libcall","_minArity":3},"keytrans":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.keytrans","_minArity":1},"json_decode":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.json_decode","_minArity":1},"serverstop":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.serverstop","_minArity":1},"inputlist":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.inputlist","_minArity":1},"setcmdpos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.setcmdpos","_minArity":1},"setcmdline":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.setcmdline","_minArity":1},"setfperm":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.setfperm","_minArity":2},"sin":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.sin","_minArity":1},"string":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.string","_minArity":1},"sign_getdefined":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.sign_getdefined","_minArity":0},"setwinvar":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.setwinvar","_minArity":3},"settabwinvar":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.settabwinvar","_minArity":4},"settabvar":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.settabvar","_minArity":3},"setreg":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.setreg","_minArity":2},"setmatches":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.setmatches","_minArity":1},"atan":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.atan","_minArity":1},"type":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.type","_minArity":1},"wait":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.wait","_minArity":2},"screenattr":{"__kind":"var","_maxArity":2,"_type":"function","_name":"vim.fn.screenattr","_minArity":2},"trim":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.trim","_minArity":1},"environ":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.environ","_minArity":0},"getchar":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getchar","_minArity":0},"getcharmod":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcharmod","_minArity":0},"getcharpos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getcharpos","_minArity":1},"getcharsearch":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcharsearch","_minArity":0},"getcharstr":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getcharstr","_minArity":0},"getcmdcompltype":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcmdcompltype","_minArity":0},"winline":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.winline","_minArity":0},"getcmdpos":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcmdpos","_minArity":0},"winheight":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.winheight","_minArity":1},"getcmdwintype":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.getcmdwintype","_minArity":0},"wincol":{"__kind":"var","_maxArity":0,"_type":"function","_name":"vim.fn.wincol","_minArity":0},"getcurpos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getcurpos","_minArity":0},"getcursorcharpos":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getcursorcharpos","_minArity":0},"tr":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.tr","_minArity":3},"getfontname":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getfontname","_minArity":0},"getfperm":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.getfperm","_minArity":1},"maparg":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.maparg","_minArity":1},"mapcheck":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.mapcheck","_minArity":1},"mapset":{"__kind":"var","_maxArity":3,"_type":"function","_name":"vim.fn.mapset","_minArity":3},"matcharg":{"__kind":"var","_maxArity":1,"_type":"function","_name":"vim.fn.matcharg","_minArity":1},"matchend":{"__kind":"var","_maxArity":4,"_type":"function","_name":"vim.fn.matchend","_minArity":2}},"_expand_pat_get_parts":{"__kind":"var","maxArity":1,"_type":"function","_name":"vim._expand_pat_get_parts","_minArity":1},"deprecate":{"__kind":"var","maxArity":5,"_type":"function","_name":"vim.deprecate","_minArity":5},"wo":{"_type":"table","__kind":"var","_name":"vim.wo"},"loop":{"close":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.close"},"disable_stdio_inheritance":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.disable_stdio_inheritance"},"write":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.write"},"spawn":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.spawn"},"process_kill":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.process_kill"},"process_get_pid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.process_get_pid"},"ref":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.ref"},"__kind":"var","shutdown":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.shutdown"},"has_ref":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.has_ref"},"send_buffer_size":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.send_buffer_size"},"recv_buffer_size":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.recv_buffer_size"},"fileno":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fileno"},"handle_get_type":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.handle_get_type"},"new_timer":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_timer"},"timer_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.timer_start"},"timer_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.timer_stop"},"timer_again":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.timer_again"},"timer_set_repeat":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.timer_set_repeat"},"timer_get_repeat":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.timer_get_repeat"},"new_tcp":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_tcp"},"tcp_open":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_open"},"tcp_nodelay":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_nodelay"},"tcp_keepalive":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_keepalive"},"_name":"vim.loop","tcp_simultaneous_accepts":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_simultaneous_accepts"},"tcp_bind":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_bind"},"tcp_getpeername":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_getpeername"},"random":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.random"},"tcp_connect":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_connect"},"tcp_write_queue_size":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_write_queue_size"},"tcp_close_reset":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_close_reset"},"socketpair":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.socketpair"},"new_pipe":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_pipe"},"pipe_open":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_open"},"pipe_bind":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_bind"},"loop_close":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.loop_close"},"run":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.run"},"loop_mode":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.loop_mode"},"loop_alive":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.loop_alive"},"stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.stop"},"backend_fd":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.backend_fd"},"backend_timeout":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.backend_timeout"},"now":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.now"},"update_time":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.update_time"},"walk":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.walk"},"loop_configure":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.loop_configure"},"cancel":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.cancel"},"req_get_type":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.req_get_type"},"is_active":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.is_active"},"is_closing":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.is_closing"},"kill":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.kill"},"unref":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.unref"},"listen":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.listen"},"_type":"table","read_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.read_start"},"read_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.read_stop"},"write2":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.write2"},"try_write":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.try_write"},"try_write2":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.try_write2"},"is_readable":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.is_readable"},"is_writable":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.is_writable"},"stream_set_blocking":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.stream_set_blocking"},"stream_get_write_queue_size":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.stream_get_write_queue_size"},"timer_get_due_in":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.timer_get_due_in"},"new_prepare":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_prepare"},"prepare_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.prepare_start"},"prepare_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.prepare_stop"},"new_check":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_check"},"check_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.check_start"},"check_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.check_stop"},"new_idle":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_idle"},"idle_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.idle_start"},"idle_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.idle_stop"},"new_async":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_async"},"async_send":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.async_send"},"new_poll":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_poll"},"new_socket_poll":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_socket_poll"},"poll_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.poll_start"},"pipe_chmod":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_chmod"},"pipe_connect":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_connect"},"pipe_getsockname":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_getsockname"},"pipe_getpeername":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_getpeername"},"pipe_pending_instances":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_pending_instances"},"pipe_pending_count":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_pending_count"},"pipe_pending_type":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe_pending_type"},"pipe":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.pipe"},"new_tty":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_tty"},"tty_set_mode":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tty_set_mode"},"tty_reset_mode":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tty_reset_mode"},"tty_get_winsize":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tty_get_winsize"},"tty_set_vterm_state":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tty_set_vterm_state"},"tty_get_vterm_state":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tty_get_vterm_state"},"new_udp":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_udp"},"udp_get_send_queue_size":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_get_send_queue_size"},"udp_get_send_queue_count":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_get_send_queue_count"},"udp_open":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_open"},"udp_bind":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_bind"},"poll_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.poll_stop"},"new_signal":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_signal"},"signal_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.signal_start"},"signal_start_oneshot":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.signal_start_oneshot"},"constants":{"SIGTTOU":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGTTOU"},"SIGTTIN":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGTTIN"},"SIGTSTP":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGTSTP"},"SIGSTOP":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGSTOP"},"SIGCONT":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGCONT"},"SIGSTKFLT":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGSTKFLT"},"_name":"vim.loop.constants","O_RDONLY":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_RDONLY"},"O_WRONLY":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_WRONLY"},"O_RDWR":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_RDWR"},"O_APPEND":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_APPEND"},"O_CREAT":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_CREAT"},"O_DSYNC":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_DSYNC"},"O_EXCL":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_EXCL"},"O_NOCTTY":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_NOCTTY"},"O_NONBLOCK":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_NONBLOCK"},"O_RSYNC":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_RSYNC"},"O_SYNC":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_SYNC"},"O_TRUNC":{"_type":"number","__kind":"var","_name":"vim.loop.constants.O_TRUNC"},"SOCK_STREAM":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SOCK_STREAM"},"SOCK_DGRAM":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SOCK_DGRAM"},"SOCK_SEQPACKET":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SOCK_SEQPACKET"},"SOCK_RAW":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SOCK_RAW"},"SOCK_RDM":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SOCK_RDM"},"AF_UNIX":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_UNIX"},"AF_INET":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_INET"},"AF_INET6":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_INET6"},"AF_IPX":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_IPX"},"AF_NETLINK":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_NETLINK"},"AF_X25":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_X25"},"AF_AX25":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_AX25"},"AF_ATMPVC":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_ATMPVC"},"AF_APPLETALK":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_APPLETALK"},"AF_PACKET":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AF_PACKET"},"AI_ADDRCONFIG":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AI_ADDRCONFIG"},"AI_V4MAPPED":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AI_V4MAPPED"},"AI_ALL":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AI_ALL"},"AI_NUMERICHOST":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AI_NUMERICHOST"},"__kind":"var","AI_NUMERICSERV":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AI_NUMERICSERV"},"SIGHUP":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGHUP"},"_type":"table","SIGQUIT":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGQUIT"},"SIGPIPE":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGPIPE"},"SIGALRM":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGALRM"},"SIGTERM":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGTERM"},"SIGCHLD":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGCHLD"},"SIGBUS":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGBUS"},"SIGFPE":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGFPE"},"SIGKILL":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGKILL"},"SIGUSR1":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGUSR1"},"SIGSEGV":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGSEGV"},"SIGUSR2":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGUSR2"},"SIGURG":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGURG"},"SIGXCPU":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGXCPU"},"SIGXFSZ":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGXFSZ"},"SIGVTALRM":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGVTALRM"},"SIGPROF":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGPROF"},"SIGWINCH":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGWINCH"},"SIGIO":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGIO"},"SIGPOLL":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGPOLL"},"SIGPWR":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGPWR"},"SIGSYS":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGSYS"},"UDP_MMSG_FREE":{"_type":"number","__kind":"var","_name":"vim.loop.constants.UDP_MMSG_FREE"},"UDP_RECVMMSG":{"_type":"number","__kind":"var","_name":"vim.loop.constants.UDP_RECVMMSG"},"UDP_MMSG_CHUNK":{"_type":"number","__kind":"var","_name":"vim.loop.constants.UDP_MMSG_CHUNK"},"UDP_REUSEADDR":{"_type":"number","__kind":"var","_name":"vim.loop.constants.UDP_REUSEADDR"},"UDP_PARTIAL":{"_type":"number","__kind":"var","_name":"vim.loop.constants.UDP_PARTIAL"},"UDP_IPV6ONLY":{"_type":"number","__kind":"var","_name":"vim.loop.constants.UDP_IPV6ONLY"},"TCP_IPV6ONLY":{"_type":"number","__kind":"var","_name":"vim.loop.constants.TCP_IPV6ONLY"},"AI_PASSIVE":{"_type":"number","__kind":"var","_name":"vim.loop.constants.AI_PASSIVE"},"SIGINT":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGINT"},"SIGILL":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGILL"},"SIGTRAP":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGTRAP"},"SIGABRT":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGABRT"},"SIGIOT":{"_type":"number","__kind":"var","_name":"vim.loop.constants.SIGIOT"}},"udp_getsockname":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_getsockname"},"udp_set_membership":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_set_membership"},"udp_set_source_membership":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_set_source_membership"},"udp_set_multicast_loop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_set_multicast_loop"},"udp_set_multicast_ttl":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_set_multicast_ttl"},"udp_set_multicast_interface":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_set_multicast_interface"},"udp_set_broadcast":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_set_broadcast"},"udp_set_ttl":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_set_ttl"},"udp_send":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_send"},"udp_try_send":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_try_send"},"udp_recv_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_recv_start"},"udp_recv_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_recv_stop"},"udp_connect":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_connect"},"udp_getpeername":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.udp_getpeername"},"new_fs_event":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_fs_event"},"fs_event_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_event_start"},"fs_event_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_event_stop"},"fs_event_getpath":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_event_getpath"},"new_fs_poll":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_fs_poll"},"fs_poll_start":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_poll_start"},"fs_poll_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_poll_stop"},"fs_poll_getpath":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_poll_getpath"},"fs_close":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_close"},"fs_open":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_open"},"fs_read":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_read"},"fs_unlink":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_unlink"},"fs_write":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_write"},"fs_mkdir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_mkdir"},"fs_mkdtemp":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_mkdtemp"},"fs_mkstemp":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_mkstemp"},"fs_rmdir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_rmdir"},"fs_scandir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_scandir"},"fs_scandir_next":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_scandir_next"},"fs_stat":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_stat"},"fs_fstat":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_fstat"},"fs_lstat":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_lstat"},"fs_rename":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_rename"},"fs_fsync":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_fsync"},"fs_fdatasync":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_fdatasync"},"fs_ftruncate":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_ftruncate"},"fs_sendfile":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_sendfile"},"fs_access":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_access"},"fs_chmod":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_chmod"},"fs_fchmod":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_fchmod"},"fs_utime":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_utime"},"fs_futime":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_futime"},"fs_lutime":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_lutime"},"fs_link":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_link"},"fs_symlink":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_symlink"},"fs_readlink":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_readlink"},"fs_realpath":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_realpath"},"fs_chown":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_chown"},"fs_fchown":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_fchown"},"fs_lchown":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_lchown"},"fs_copyfile":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_copyfile"},"fs_opendir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_opendir"},"fs_readdir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_readdir"},"fs_closedir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_closedir"},"fs_statfs":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.fs_statfs"},"getaddrinfo":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.getaddrinfo"},"getnameinfo":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.getnameinfo"},"chdir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.chdir"},"os_homedir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_homedir"},"os_tmpdir":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_tmpdir"},"os_get_passwd":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_get_passwd"},"cpu_info":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.cpu_info"},"cwd":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.cwd"},"exepath":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.exepath"},"get_process_title":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.get_process_title"},"get_constrained_memory":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.get_constrained_memory"},"get_total_memory":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.get_total_memory"},"get_free_memory":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.get_free_memory"},"getpid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.getpid"},"getuid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.getuid"},"setuid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.setuid"},"getgid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.getgid"},"setgid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.setgid"},"getrusage":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.getrusage"},"guess_handle":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.guess_handle"},"hrtime":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.hrtime"},"interface_addresses":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.interface_addresses"},"loadavg":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.loadavg"},"resident_set_memory":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.resident_set_memory"},"set_process_title":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.set_process_title"},"uptime":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.uptime"},"version_string":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.version_string"},"print_all_handles":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.print_all_handles"},"print_active_handles":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.print_active_handles"},"os_getenv":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_getenv"},"os_setenv":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_setenv"},"os_unsetenv":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_unsetenv"},"os_gethostname":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_gethostname"},"if_indextoname":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.if_indextoname"},"if_indextoiid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.if_indextoiid"},"os_getppid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_getppid"},"os_getpid":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_getpid"},"os_getpriority":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_getpriority"},"os_setpriority":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_setpriority"},"os_uname":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_uname"},"gettimeofday":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.gettimeofday"},"os_environ":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.os_environ"},"sleep":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.sleep"},"new_thread":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_thread"},"thread_equal":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.thread_equal"},"thread_self":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.thread_self"},"thread_join":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.thread_join"},"new_work":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.new_work"},"queue_work":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.queue_work"},"translate_sys_error":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.translate_sys_error"},"metrics_idle_time":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.metrics_idle_time"},"accept":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.accept"},"tcp_getsockname":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.tcp_getsockname"},"signal_stop":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.signal_stop"},"version":{"_minArity":0,"_type":"function","__kind":"var","_name":"vim.loop.version"}},"opt":{"vim.opt.listchars":{"__kind":"rec","path":"vim.opt.listchars"},"selectmode":{"_type":"table","__kind":"var","_name":"vim.opt.selectmode"},"slm":{"__kind":"rec","path":"vim.opt.selectmode"},"cot":{"__kind":"rec","path":"vim.opt.completeopt"},"guicursor":{"_type":"table","__kind":"var","_name":"vim.opt.guicursor"},"sessionoptions":{"_type":"table","__kind":"var","_name":"vim.opt.sessionoptions"},"ssop":{"__kind":"rec","path":"vim.opt.sessionoptions"},"guifont":{"_type":"table","__kind":"var","_name":"vim.opt.guifont"},"shada":{"_type":"table","__kind":"var","_name":"vim.opt.shada"},"guifontwide":{"_type":"table","__kind":"var","_name":"vim.opt.guifontwide"},"gfw":{"__kind":"rec","path":"vim.opt.guifontwide"},"path":{"_type":"table","__kind":"var","_name":"vim.opt.path"},"cb":{"__kind":"rec","path":"vim.opt.clipboard"},"cpoptions":{"_type":"table","__kind":"var","_name":"vim.opt.cpoptions"},"cpo":{"__kind":"rec","path":"vim.opt.cpoptions"},"wildoptions":{"_type":"table","__kind":"var","_name":"vim.opt.wildoptions"},"wop":{"__kind":"rec","path":"vim.opt.wildoptions"},"highlight":{"_type":"table","__kind":"var","_name":"vim.opt.highlight"},"helplang":{"_type":"table","__kind":"var","_name":"vim.opt.helplang"},"errorformat":{"_type":"table","__kind":"var","_name":"vim.opt.errorformat"},"efm":{"__kind":"rec","path":"vim.opt.errorformat"},"eventignore":{"_type":"table","__kind":"var","_name":"vim.opt.eventignore"},"ei":{"__kind":"rec","path":"vim.opt.eventignore"},"hl":{"__kind":"rec","path":"vim.opt.highlight"},"fileencodings":{"_type":"table","__kind":"var","_name":"vim.opt.fileencodings"},"fencs":{"__kind":"rec","path":"vim.opt.fileencodings"},"redrawdebug":{"_type":"table","__kind":"var","_name":"vim.opt.redrawdebug"},"rdb":{"__kind":"rec","path":"vim.opt.redrawdebug"},"_name":"vim.opt","fileformats":{"_type":"table","__kind":"var","_name":"vim.opt.fileformats"},"ffs":{"__kind":"rec","path":"vim.opt.fileformats"},"go":{"__kind":"rec","path":"vim.opt.guioptions"},"bo":{"__kind":"rec","path":"vim.opt.belloff"},"fillchars":{"_type":"table","__kind":"var","_name":"vim.opt.fillchars"},"spellsuggest":{"_type":"table","__kind":"var","_name":"vim.opt.spellsuggest"},"listchars":{"_type":"table","__kind":"var","_name":"vim.opt.listchars"},"foldclose":{"_type":"table","__kind":"var","_name":"vim.opt.foldclose"},"fcl":{"__kind":"rec","path":"vim.opt.foldclose"},"dir":{"__kind":"rec","path":"vim.opt.directory"},"__kind":"var","_type":"table","pp":{"__kind":"rec","path":"vim.opt.packpath"},"display":{"_type":"table","__kind":"var","_name":"vim.opt.display"},"indentkeys":{"_type":"table","__kind":"var","_name":"vim.opt.indentkeys"},"indk":{"__kind":"rec","path":"vim.opt.indentkeys"},"backupcopy":{"_type":"table","__kind":"var","_name":"vim.opt.backupcopy"},"bkc":{"__kind":"rec","path":"vim.opt.backupcopy"},"isfname":{"_type":"table","__kind":"var","_name":"vim.opt.isfname"},"isf":{"__kind":"rec","path":"vim.opt.isfname"},"lispoptions":{"_type":"table","__kind":"var","_name":"vim.opt.lispoptions"},"lop":{"__kind":"rec","path":"vim.opt.lispoptions"},"backupdir":{"_type":"table","__kind":"var","_name":"vim.opt.backupdir"},"bdir":{"__kind":"rec","path":"vim.opt.backupdir"},"lispwords":{"_type":"table","__kind":"var","_name":"vim.opt.lispwords"},"lw":{"__kind":"rec","path":"vim.opt.lispwords"},"tag":{"__kind":"rec","path":"vim.opt.tags"},"iskeyword":{"_type":"table","__kind":"var","_name":"vim.opt.iskeyword"},"isk":{"__kind":"rec","path":"vim.opt.iskeyword"},"backupskip":{"_type":"table","__kind":"var","_name":"vim.opt.backupskip"},"bsk":{"__kind":"rec","path":"vim.opt.backupskip"},"belloff":{"_type":"table","__kind":"var","_name":"vim.opt.belloff"},"directory":{"_type":"table","__kind":"var","_name":"vim.opt.directory"},"jop":{"__kind":"rec","path":"vim.opt.jumpoptions"},"cpt":{"__kind":"rec","path":"vim.opt.complete"},"tpf":{"__kind":"rec","path":"vim.opt.termpastefilter"},"breakat":{"_type":"table","__kind":"var","_name":"vim.opt.breakat"},"brk":{"__kind":"rec","path":"vim.opt.breakat"},"km":{"__kind":"rec","path":"vim.opt.keymodel"},"mps":{"__kind":"rec","path":"vim.opt.matchpairs"},"vim.opt.winhighlight":{"__kind":"rec","path":"vim.opt.winhighlight"},"complete":{"_type":"table","__kind":"var","_name":"vim.opt.complete"},"tsr":{"__kind":"rec","path":"vim.opt.thesaurus"},"winhighlight":{"_type":"table","__kind":"var","_name":"vim.opt.winhighlight"},"breakindentopt":{"_type":"table","__kind":"var","_name":"vim.opt.breakindentopt"},"briopt":{"__kind":"rec","path":"vim.opt.breakindentopt"},"lmap":{"__kind":"rec","path":"vim.opt.langmap"},"wim":{"__kind":"rec","path":"vim.opt.wildmode"},"wildmode":{"_type":"table","__kind":"var","_name":"vim.opt.wildmode"},"wig":{"__kind":"rec","path":"vim.opt.wildignore"},"com":{"__kind":"rec","path":"vim.opt.comments"},"wildignore":{"_type":"table","__kind":"var","_name":"vim.opt.wildignore"},"completeopt":{"_type":"table","__kind":"var","_name":"vim.opt.completeopt"},"matchpairs":{"_type":"table","__kind":"var","_name":"vim.opt.matchpairs"},"ve":{"__kind":"rec","path":"vim.opt.virtualedit"},"formatoptions":{"_type":"table","__kind":"var","_name":"vim.opt.formatoptions"},"vop":{"__kind":"rec","path":"vim.opt.viewoptions"},"dict":{"__kind":"rec","path":"vim.opt.dictionary"},"vts":{"__kind":"rec","path":"vim.opt.vartabstop"},"vartabstop":{"_type":"table","__kind":"var","_name":"vim.opt.vartabstop"},"guioptions":{"_type":"table","__kind":"var","_name":"vim.opt.guioptions"},"varsofttabstop":{"_type":"table","__kind":"var","_name":"vim.opt.varsofttabstop"},"casemap":{"_type":"table","__kind":"var","_name":"vim.opt.casemap"},"cmp":{"__kind":"rec","path":"vim.opt.casemap"},"spellfile":{"_type":"table","__kind":"var","_name":"vim.opt.spellfile"},"spf":{"__kind":"rec","path":"vim.opt.spellfile"},"udir":{"__kind":"rec","path":"vim.opt.undodir"},"undodir":{"_type":"table","__kind":"var","_name":"vim.opt.undodir"},"spelllang":{"_type":"table","__kind":"var","_name":"vim.opt.spelllang"},"spl":{"__kind":"rec","path":"vim.opt.spelllang"},"thesaurus":{"_type":"table","__kind":"var","_name":"vim.opt.thesaurus"},"cdpath":{"_type":"table","__kind":"var","_name":"vim.opt.cdpath"},"cd":{"__kind":"rec","path":"vim.opt.cdpath"},"sps":{"__kind":"rec","path":"vim.opt.spellsuggest"},"termpastefilter":{"_type":"table","__kind":"var","_name":"vim.opt.termpastefilter"},"tags":{"_type":"table","__kind":"var","_name":"vim.opt.tags"},"bs":{"__kind":"rec","path":"vim.opt.backspace"},"spelloptions":{"_type":"table","__kind":"var","_name":"vim.opt.spelloptions"},"spo":{"__kind":"rec","path":"vim.opt.spelloptions"},"gcr":{"__kind":"rec","path":"vim.opt.guicursor"},"sua":{"__kind":"rec","path":"vim.opt.suffixesadd"},"suffixesadd":{"_type":"table","__kind":"var","_name":"vim.opt.suffixesadd"},"su":{"__kind":"rec","path":"vim.opt.suffixes"},"isi":{"__kind":"rec","path":"vim.opt.isident"},"shm":{"__kind":"rec","path":"vim.opt.shortmess"},"shortmess":{"_type":"table","__kind":"var","_name":"vim.opt.shortmess"},"sdf":{"__kind":"rec","path":"vim.opt.shadafile"},"mouse":{"_type":"table","__kind":"var","_name":"vim.opt.mouse"},"shadafile":{"_type":"table","__kind":"var","_name":"vim.opt.shadafile"},"sd":{"__kind":"rec","path":"vim.opt.shada"},"cinkeys":{"_type":"table","__kind":"var","_name":"vim.opt.cinkeys"},"cink":{"__kind":"rec","path":"vim.opt.cinkeys"},"cursorlineopt":{"_type":"table","__kind":"var","_name":"vim.opt.cursorlineopt"},"backspace":{"_type":"table","__kind":"var","_name":"vim.opt.backspace"},"cinoptions":{"_type":"table","__kind":"var","_name":"vim.opt.cinoptions"},"cino":{"__kind":"rec","path":"vim.opt.cinoptions"},"foldmarker":{"_type":"table","__kind":"var","_name":"vim.opt.foldmarker"},"fmr":{"__kind":"rec","path":"vim.opt.foldmarker"},"cinwords":{"_type":"table","__kind":"var","_name":"vim.opt.cinwords"},"cinw":{"__kind":"rec","path":"vim.opt.cinwords"},"vsts":{"__kind":"rec","path":"vim.opt.varsofttabstop"},"dy":{"__kind":"rec","path":"vim.opt.display"},"suffixes":{"_type":"table","__kind":"var","_name":"vim.opt.suffixes"},"cinscopedecls":{"_type":"table","__kind":"var","_name":"vim.opt.cinscopedecls"},"cinsd":{"__kind":"rec","path":"vim.opt.cinscopedecls"},"isident":{"_type":"table","__kind":"var","_name":"vim.opt.isident"},"culopt":{"__kind":"rec","path":"vim.opt.cursorlineopt"},"mousescroll":{"_type":"table","__kind":"var","_name":"vim.opt.mousescroll"},"clipboard":{"_type":"table","__kind":"var","_name":"vim.opt.clipboard"},"isp":{"__kind":"rec","path":"vim.opt.isprint"},"runtimepath":{"_type":"table","__kind":"var","_name":"vim.opt.runtimepath"},"rtp":{"__kind":"rec","path":"vim.opt.runtimepath"},"mouseshape":{"_type":"table","__kind":"var","_name":"vim.opt.mouseshape"},"mouses":{"__kind":"rec","path":"vim.opt.mouseshape"},"isprint":{"_type":"table","__kind":"var","_name":"vim.opt.isprint"},"switchbuf":{"_type":"table","__kind":"var","_name":"vim.opt.switchbuf"},"swb":{"__kind":"rec","path":"vim.opt.switchbuf"},"viewoptions":{"_type":"table","__kind":"var","_name":"vim.opt.viewoptions"},"colorcolumn":{"_type":"table","__kind":"var","_name":"vim.opt.colorcolumn"},"nrformats":{"_type":"table","__kind":"var","_name":"vim.opt.nrformats"},"nf":{"__kind":"rec","path":"vim.opt.nrformats"},"fo":{"__kind":"rec","path":"vim.opt.formatoptions"},"grepformat":{"_type":"table","__kind":"var","_name":"vim.opt.grepformat"},"vim.opt.fillchars":{"__kind":"rec","path":"vim.opt.fillchars"},"comments":{"_type":"table","__kind":"var","_name":"vim.opt.comments"},"fdo":{"__kind":"rec","path":"vim.opt.foldopen"},"foldopen":{"_type":"table","__kind":"var","_name":"vim.opt.foldopen"},"virtualedit":{"_type":"table","__kind":"var","_name":"vim.opt.virtualedit"},"diffopt":{"_type":"table","__kind":"var","_name":"vim.opt.diffopt"},"dip":{"__kind":"rec","path":"vim.opt.diffopt"},"jumpoptions":{"_type":"table","__kind":"var","_name":"vim.opt.jumpoptions"},"keymodel":{"_type":"table","__kind":"var","_name":"vim.opt.keymodel"},"langmap":{"_type":"table","__kind":"var","_name":"vim.opt.langmap"},"scrollopt":{"_type":"table","__kind":"var","_name":"vim.opt.scrollopt"},"sbo":{"__kind":"rec","path":"vim.opt.scrollopt"},"dictionary":{"_type":"table","__kind":"var","_name":"vim.opt.dictionary"},"whichwrap":{"_type":"table","__kind":"var","_name":"vim.opt.whichwrap"},"ww":{"__kind":"rec","path":"vim.opt.whichwrap"},"hlg":{"__kind":"rec","path":"vim.opt.helplang"},"packpath":{"_type":"table","__kind":"var","_name":"vim.opt.packpath"},"gfm":{"__kind":"rec","path":"vim.opt.grepformat"},"pa":{"__kind":"rec","path":"vim.opt.path"},"cc":{"__kind":"rec","path":"vim.opt.colorcolumn"},"gfn":{"__kind":"rec","path":"vim.opt.guifont"}},"deepcopy":{"__kind":"var","maxArity":2,"_type":"function","_name":"vim.deepcopy","_minArity":2},"opt_global":{"_type":"table","__kind":"var","_name":"vim.opt_global"},"_name":"vim"},"gcinfo":{"_minArity":0,"_type":"function","__kind":"var","_name":"gcinfo"},"json":{"__kind":"var","decode":{"__kind":"var","maxArity":1,"_type":"function","_name":"json.decode","_minArity":1},"encode":{"__kind":"var","maxArity":1,"_type":"function","_name":"json.encode","_minArity":1},"_type":"table","_version":{"_type":"string","__kind":"var","_name":"json._version"},"_name":"json"},"table":{"remove":{"__kind":"var","maxArity":2,"_type":"function","_name":"table.remove","_minArity":2},"move":{"__kind":"var","maxArity":5,"_type":"function","_name":"table.move","_minArity":5},"concat":{"_minArity":0,"_type":"function","__kind":"var","_name":"table.concat"},"sort":{"_minArity":0,"_type":"function","__kind":"var","_name":"table.sort"},"insert":{"_minArity":0,"_type":"function","__kind":"var","_name":"table.insert"},"getn":{"__kind":"var","maxArity":1,"_type":"function","_name":"table.getn","_minArity":1},"__kind":"var","foreachi":{"__kind":"var","maxArity":2,"_type":"function","_name":"table.foreachi","_minArity":2},"foreach":{"__kind":"var","maxArity":2,"_type":"function","_name":"table.foreach","_minArity":2},"_type":"table","maxn":{"_minArity":0,"_type":"function","__kind":"var","_name":"table.maxn"},"_name":"table"},"xpcall":{"_minArity":0,"_type":"function","__kind":"var","_name":"xpcall"},"io":{"type":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.type"},"close":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.close"},"read":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.read"},"write":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.write"},"flush":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.flush"},"lines":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.lines"},"open":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.open"},"popen":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.popen"},"tmpfile":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.tmpfile"},"input":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.input"},"output":{"_minArity":0,"_type":"function","__kind":"var","_name":"io.output"},"stdin":{"_type":"userdata","__kind":"var","_name":"io.stdin"},"stdout":{"_type":"userdata","__kind":"var","_name":"io.stdout"},"stderr":{"_type":"userdata","__kind":"var","_name":"io.stderr"},"__kind":"var","_type":"table","_name":"io"},"next":{"_minArity":0,"_type":"function","__kind":"var","_name":"next"},"pairs":{"_minArity":0,"_type":"function","__kind":"var","_name":"pairs"},"ipairs":{"_minArity":0,"_type":"function","__kind":"var","_name":"ipairs"},"getmetatable":{"_minArity":0,"_type":"function","__kind":"var","_name":"getmetatable"},"setmetatable":{"_minArity":0,"_type":"function","__kind":"var","_name":"setmetatable"},"getfenv":{"_minArity":0,"_type":"function","__kind":"var","_name":"getfenv"},"setfenv":{"_minArity":0,"_type":"function","__kind":"var","_name":"setfenv"},"rawget":{"_minArity":0,"_type":"function","__kind":"var","_name":"rawget"},"rawset":{"_minArity":0,"_type":"function","__kind":"var","_name":"rawset"},"rawequal":{"_minArity":0,"_type":"function","__kind":"var","_name":"rawequal"},"unpack":{"_minArity":0,"_type":"function","__kind":"var","_name":"unpack"},"select":{"_minArity":0,"_type":"function","__kind":"var","_name":"select"},"tonumber":{"_minArity":0,"_type":"function","__kind":"var","_name":"tonumber"},"tostring":{"_minArity":0,"_type":"function","__kind":"var","_name":"tostring"},"error":{"_minArity":0,"_type":"function","__kind":"var","_name":"error"},"pcall":{"_minArity":0,"_type":"function","__kind":"var","_name":"pcall"},"os":{"remove":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.remove"},"setlocale":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.setlocale"},"time":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.time"},"difftime":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.difftime"},"clock":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.clock"},"tmpname":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.tmpname"},"execute":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.execute"},"rename":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.rename"},"__kind":"var","getenv":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.getenv"},"exit":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.exit"},"_type":"table","date":{"_minArity":0,"_type":"function","__kind":"var","_name":"os.date"},"_name":"os"},"loadfile":{"_minArity":0,"_type":"function","__kind":"var","_name":"loadfile"},"load":{"_minArity":0,"_type":"function","__kind":"var","_name":"load"},"loadstring":{"_minArity":0,"_type":"function","__kind":"var","_name":"loadstring"},"dofile":{"_minArity":0,"_type":"function","__kind":"var","_name":"dofile"},"bit":{"lshift":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.lshift"},"rshift":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.rshift"},"arshift":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.arshift"},"rol":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.rol"},"ror":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.ror"},"band":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.band"},"bor":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.bor"},"bxor":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.bxor"},"tohex":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.tohex"},"__kind":"var","bswap":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.bswap"},"tobit":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.tobit"},"_type":"table","bnot":{"_minArity":0,"_type":"function","__kind":"var","_name":"bit.bnot"},"_name":"bit"},"collectgarbage":{"_minArity":0,"_type":"function","__kind":"var","_name":"collectgarbage"},"newproxy":{"_minArity":0,"_type":"function","__kind":"var","_name":"newproxy"},"print":{"_minArity":0,"_type":"function","__kind":"var","_name":"print"}} diff --git a/home/common/nvim/vim-lua.txt b/home/common/nvim/vim-lua.txt deleted file mode 100644 index 2209b1f..0000000 --- a/home/common/nvim/vim-lua.txt +++ /dev/null @@ -1,9161 +0,0 @@ -function/0/error -function/0/pcall -function/0/xpcall -function/0/loadfile -function/0/load -function/0/loadstring -function/0/dofile -function/0/gcinfo -function/0/collectgarbage -function/0/newproxy -function/0/print -string/_VERSION -function/0/coroutine.create -function/0/coroutine.yield -function/0/coroutine.resume -function/0/coroutine.wrap -function/0/coroutine.status -function/0/coroutine.running -function/0/coroutine.isyieldable -string/package.config -function/1/luasnip.util.extend_decorator.register -function/1/luasnip.util.extend_decorator.apply -function/2/nvim-tree.iterators.node-iterator.matcher -function/1/nvim-tree.iterators.node-iterator.iterate -function/2/nvim-tree.iterators.node-iterator.recursor -function/1/nvim-tree.iterators.node-iterator.builder -function/1/nvim-tree.iterators.node-iterator.hidden -function/2/nvim-tree.iterators.node-iterator.applier -function/1/lspconfig.util.get_other_matching_providers -function/1/lspconfig.util.validate_bufnr -function/2/lspconfig.util.add_hook_before -function/1/lspconfig.util.get_config_by_ft -function/1/lspconfig.util._parse_user_command_options -function/2/lspconfig.util.add_hook_after -function/0/lspconfig.util.available_servers -function/1/lspconfig.util.server_per_root_dir_manager -function/2/lspconfig.util.search_ancestors -boolean/lspconfig.util.default_config.capabilities.window.workDoneProgress -boolean/lspconfig.util.default_config.capabilities.window.showMessage.messageActionItem.additionalPropertiesSupport -boolean/lspconfig.util.default_config.capabilities.window.showDocument.support -boolean/lspconfig.util.default_config.capabilities.workspace.applyEdit -string/lspconfig.util.default_config.capabilities.workspace.workspaceEdit.resourceOperations.1 -string/lspconfig.util.default_config.capabilities.workspace.workspaceEdit.resourceOperations.2 -string/lspconfig.util.default_config.capabilities.workspace.workspaceEdit.resourceOperations.3 -boolean/lspconfig.util.default_config.capabilities.workspace.workspaceFolders -boolean/lspconfig.util.default_config.capabilities.workspace.configuration -boolean/lspconfig.util.default_config.capabilities.workspace.symbol.dynamicRegistration -boolean/lspconfig.util.default_config.capabilities.workspace.symbol.hierarchicalWorkspaceSymbolSupport -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.1 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.2 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.3 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.4 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.5 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.6 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.7 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.8 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.9 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.10 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.11 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.12 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.13 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.14 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.15 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.16 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.17 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.18 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.19 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.20 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.21 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.22 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.23 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.24 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.25 -number/lspconfig.util.default_config.capabilities.workspace.symbol.symbolKind.valueSet.26 -boolean/lspconfig.util.default_config.capabilities.textDocument.implementation.linkSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.references.dynamicRegistration -boolean/lspconfig.util.default_config.capabilities.textDocument.rename.dynamicRegistration -boolean/lspconfig.util.default_config.capabilities.textDocument.rename.prepareSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.documentHighlight.dynamicRegistration -boolean/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.dynamicRegistration -boolean/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.hierarchicalDocumentSymbolSupport -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.1 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.2 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.3 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.4 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.5 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.6 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.7 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.8 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.9 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.10 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.11 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.12 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.13 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.14 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.15 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.16 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.17 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.18 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.19 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.20 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.21 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.22 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.23 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.24 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.25 -number/lspconfig.util.default_config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.26 -boolean/lspconfig.util.default_config.capabilities.textDocument.synchronization.dynamicRegistration -boolean/lspconfig.util.default_config.capabilities.textDocument.synchronization.willSave -boolean/lspconfig.util.default_config.capabilities.textDocument.synchronization.willSaveWaitUntil -boolean/lspconfig.util.default_config.capabilities.textDocument.synchronization.didSave -number/lspconfig.util.default_config.capabilities.textDocument.publishDiagnostics.tagSupport.valueSet.1 -number/lspconfig.util.default_config.capabilities.textDocument.publishDiagnostics.tagSupport.valueSet.2 -boolean/lspconfig.util.default_config.capabilities.textDocument.publishDiagnostics.relatedInformation -boolean/lspconfig.util.default_config.capabilities.textDocument.signatureHelp.dynamicRegistration -string/lspconfig.util.default_config.capabilities.textDocument.signatureHelp.signatureInformation.documentationFormat.1 -string/lspconfig.util.default_config.capabilities.textDocument.signatureHelp.signatureInformation.documentationFormat.2 -boolean/lspconfig.util.default_config.capabilities.textDocument.signatureHelp.signatureInformation.activeParameterSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.signatureHelp.signatureInformation.parameterInformation.labelOffsetSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.hover.dynamicRegistration -string/lspconfig.util.default_config.capabilities.textDocument.hover.contentFormat.1 -string/lspconfig.util.default_config.capabilities.textDocument.hover.contentFormat.2 -boolean/lspconfig.util.default_config.capabilities.textDocument.definition.linkSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.declaration.linkSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.completion.dynamicRegistration -boolean/lspconfig.util.default_config.capabilities.textDocument.completion.completionItem.preselectSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.completion.completionItem.deprecatedSupport -string/lspconfig.util.default_config.capabilities.textDocument.completion.completionItem.documentationFormat.1 -string/lspconfig.util.default_config.capabilities.textDocument.completion.completionItem.documentationFormat.2 -boolean/lspconfig.util.default_config.capabilities.textDocument.completion.completionItem.snippetSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.completion.completionItem.commitCharactersSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.completion.contextSupport -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.1 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.2 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.3 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.4 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.5 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.6 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.7 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.8 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.9 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.10 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.11 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.12 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.13 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.14 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.15 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.16 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.17 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.18 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.19 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.20 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.21 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.22 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.23 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.24 -number/lspconfig.util.default_config.capabilities.textDocument.completion.completionItemKind.valueSet.25 -boolean/lspconfig.util.default_config.capabilities.textDocument.typeDefinition.linkSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.codeAction.dynamicRegistration -boolean/lspconfig.util.default_config.capabilities.textDocument.codeAction.isPreferredSupport -boolean/lspconfig.util.default_config.capabilities.textDocument.codeAction.dataSupport -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.resolveSupport.properties.1 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.1 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.2 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.3 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.4 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.5 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.6 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.7 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.8 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.9 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.10 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.11 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.12 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.13 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.14 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.15 -string/lspconfig.util.default_config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.16 -boolean/lspconfig.util.default_config.capabilities.callHierarchy.dynamicRegistration -number/lspconfig.util.default_config.log_level -number/lspconfig.util.default_config.message_level -boolean/lspconfig.util.default_config.autostart -function/0/lspconfig.util.root_pattern -function/2/lspconfig.util.get_active_client_by_name -function/0/lspconfig.util.get_managed_clients -function/1/lspconfig.util.strip_archive_subpath -function/1/lspconfig.util.find_git_ancestor -function/1/lspconfig.util.find_mercurial_ancestor -function/1/lspconfig.util.get_active_clients_list_by_ft -function/1/lspconfig.util.find_node_modules_ancestor -function/1/lspconfig.util.find_package_json_ancestor -function/2/lspconfig.util.insert_package_json -function/1/lspconfig.util.path.escape_wildcards -function/0/lspconfig.util.path.join -function/1/lspconfig.util.path.exists -function/1/lspconfig.util.path.is_file -function/1/lspconfig.util.path.is_absolute -string/lspconfig.util.path.path_separator -function/1/lspconfig.util.path.sanitize -function/2/lspconfig.util.path.traverse_parents -function/1/lspconfig.util.path.iterate_parents -function/2/lspconfig.util.path.is_descendant -function/1/lspconfig.util.path.dirname -function/1/lspconfig.util.path.is_dir -function/2/lspconfig.util.create_module_commands -function/1/lspconfig.util.bufname_valid -function/0/bit.band -function/0/bit.bor -function/0/bit.bxor -function/0/bit.tohex -function/0/bit.tobit -function/0/bit.bnot -function/0/bit.bswap -function/0/bit.lshift -function/0/bit.rshift -function/0/bit.arshift -function/0/bit.rol -function/0/bit.ror -function/1/vim.filetype.detect.fs -function/1/vim.filetype.detect.r -function/1/vim.filetype.detect.dns_zone -function/2/vim.filetype.detect.csh -function/1/vim.filetype.detect.asm -function/1/vim.filetype.detect.asp -function/1/vim.filetype.detect.bas -function/2/vim.filetype.detect.bindzone -function/1/vim.filetype.detect.ent -function/1/vim.filetype.detect.control -function/1/vim.filetype.detect.copyright -function/1/vim.filetype.detect.frm -function/1/vim.filetype.detect.hw -function/1/vim.filetype.detect.idl -function/1/vim.filetype.detect.inc -function/1/vim.filetype.detect.inp -function/1/vim.filetype.detect.dtrace -function/1/vim.filetype.detect.nroff -function/1/vim.filetype.detect.lpc -function/1/vim.filetype.detect.mc -function/3/vim.filetype.detect.sh -function/1/vim.filetype.detect.mm -function/1/vim.filetype.detect.sig -function/1/vim.filetype.detect.change -function/1/vim.filetype.detect.sil -function/1/vim.filetype.detect.cls -function/1/vim.filetype.detect.web -function/1/vim.filetype.detect.progress_asm -function/1/vim.filetype.detect.progress_cweb -function/1/vim.filetype.detect.progress_pascal -function/1/vim.filetype.detect.redif -function/1/vim.filetype.detect.sc -function/1/vim.filetype.detect.scd -function/3/vim.filetype.detect.shell -function/1/vim.filetype.detect.y -function/1/vim.filetype.detect.rul -function/1/vim.filetype.detect.edn -function/1/vim.filetype.detect.smi -function/2/vim.filetype.detect.install -function/1/vim.filetype.detect.me -function/1/vim.filetype.detect.reg -function/1/vim.filetype.detect.ttl -function/1/vim.filetype.detect.class -function/1/vim.filetype.detect.sgml -function/1/vim.filetype.detect.foam -function/1/vim.filetype.detect.news -function/2/vim.filetype.detect.tex -function/1/vim.filetype.detect.psf -function/1/vim.filetype.detect.patch -function/1/vim.filetype.detect.pm -function/1/vim.filetype.detect.changelog -function/2/vim.filetype.detect.dat -function/2/vim.filetype.detect.dep3patch -function/1/vim.filetype.detect.pp -function/1/vim.filetype.detect.fvwm -function/2/vim.filetype.detect.mod -function/1/vim.filetype.detect.prg -function/1/vim.filetype.detect.printcap -function/1/vim.filetype.detect.sys -function/1/vim.filetype.detect.cfg -function/1/vim.filetype.detect.src -function/2/vim.filetype.detect.proto -function/2/vim.filetype.detect.match_contents -function/1/vim.filetype.detect.log -function/1/vim.filetype.detect.header -function/0/vim.filetype.detect.xfree86 -function/1/vim.filetype.detect.txt -function/1/vim.filetype.detect.git -function/1/vim.filetype.detect.tf -function/1/vim.filetype.detect.ex -function/1/vim.filetype.detect.e -function/1/vim.filetype.detect.html -function/1/vim.filetype.detect.pl -function/1/vim.filetype.detect.asm_syntax -function/1/vim.filetype.detect.xml -function/1/vim.filetype.detect.m -function/2/vim.filetype.detect.perl -function/1/vim.filetype.detect.mms -function/1/vim.filetype.detect.rules -function/1/vim.filetype.detect.decl -function/2/vim.filetype.detect.conf -function/1/luasnip.util.log.set_loglevel -function/0/luasnip.util.log.ping -function/0/luasnip.util.log.open -function/1/luasnip.util.log.new -boolean/nvim-tree.actions.node.open-file.resize_window -string/nvim-tree.actions.node.open-file.window_picker.exclude.filetype.1 -string/nvim-tree.actions.node.open-file.window_picker.exclude.filetype.2 -string/nvim-tree.actions.node.open-file.window_picker.exclude.filetype.3 -string/nvim-tree.actions.node.open-file.window_picker.exclude.filetype.4 -string/nvim-tree.actions.node.open-file.window_picker.exclude.filetype.5 -string/nvim-tree.actions.node.open-file.window_picker.exclude.filetype.6 -string/nvim-tree.actions.node.open-file.window_picker.exclude.buftype.1 -string/nvim-tree.actions.node.open-file.window_picker.exclude.buftype.2 -string/nvim-tree.actions.node.open-file.window_picker.exclude.buftype.3 -boolean/nvim-tree.actions.node.open-file.window_picker.enable -string/nvim-tree.actions.node.open-file.window_picker.picker -string/nvim-tree.actions.node.open-file.window_picker.chars -function/1/nvim-tree.actions.node.open-file.setup -function/2/nvim-tree.actions.node.open-file.fn -boolean/nvim-tree.actions.node.open-file.quit_on_open -function/1/nvim-tree.actions.root.dir-up.fn -boolean/cmp.utils.debug.flag -function/0/cmp.utils.debug.log -function/2/cmp.utils.str.escape -function/1/cmp.utils.str.oneline -function/2/cmp.utils.str.has_prefix -function/2/cmp.utils.str.get_common_string -function/3/cmp.utils.str.get_word -function/2/cmp.utils.str.remove_suffix -function/1/cmp.utils.str.trim -function/1/cmp.utils.char.is_alnum -function/1/cmp.utils.char.is_upper -function/1/cmp.utils.char.is_alpha -function/1/cmp.utils.char.is_digit -function/1/cmp.utils.char.is_symbol -function/2/cmp.utils.char.match -function/2/cmp.utils.char.is_semantic_index -function/1/cmp.utils.char.is_printable -function/2/cmp.utils.char.get_next_semantic_index -function/1/cmp.utils.char.is_white -function/2/cmp.utils.pattern.offset -function/2/cmp.utils.pattern.matchstr -function/1/cmp.utils.pattern.regex -userdata/cmp.utils.pattern._regexes.\%([^[:alnum:][:blank:]]\|\w\+\)\m$ -userdata/cmp.utils.pattern._regexes.^\%(\%(-\?\d\+\%(\.\d\+\)\?\|\h\w*\%(-\w*\)*\)\) -userdata/cmp.utils.pattern._regexes.[^[:blank:]]\+$ -userdata/cmp.utils.pattern._regexes.\%(-\?\d\+\%(\.\d\+\)\?\|\h\w*\%(-\w*\)*\)\m$ -function/2/cmp.context.get_offset -function/1/cmp.context.get_reason -function/1/cmp.context.clone -function/2/cmp.context.changed -function/0/cmp.context.empty -function/2/cmp.context.new -function/2/cmp.view.select_next_item -function/2/cmp.view.select_prev_item -function/1/cmp.view.visible -function/1/cmp.view.get_selected_entry -function/1/cmp.view.get_active_entry -function/1/cmp.view.get_entries -function/1/cmp.view.ready -function/1/cmp.view.abort -function/2/cmp.view.on_entry_change.sync -function/0/cmp.view.on_entry_change.stop -boolean/cmp.view.on_entry_change.running -number/cmp.view.on_entry_change.timeout -function/1/cmp.view.on_change -function/1/cmp.view._get_entries_view -function/3/cmp.view.open -function/2/cmp.view.scroll_docs -function/1/cmp.view.get_offset -function/1/cmp.view.get_first_entry -function/1/cmp.view.close -function/0/cmp.view.new -boolean/cmp.types.vim -string/cmp.types.cmp.ConfirmBehavior.Insert -string/cmp.types.cmp.ConfirmBehavior.Replace -string/cmp.types.cmp.TriggerEvent.TextChanged -string/cmp.types.cmp.TriggerEvent.InsertEnter -string/cmp.types.cmp.SelectBehavior.Insert -string/cmp.types.cmp.SelectBehavior.Select -string/cmp.types.cmp.ItemField.Abbr -string/cmp.types.cmp.ItemField.Kind -string/cmp.types.cmp.ItemField.Menu -string/cmp.types.cmp.PreselectMode.Item -string/cmp.types.cmp.PreselectMode.None -string/cmp.types.cmp.ContextReason.None -string/cmp.types.cmp.ContextReason.TriggerOnly -string/cmp.types.cmp.ContextReason.Auto -string/cmp.types.cmp.ContextReason.Manual -number/cmp.types.lsp.InsertTextMode.AsIs -number/cmp.types.lsp.InsertTextMode.AdjustIndentation -string/cmp.types.lsp.MarkupKind.PlainText -string/cmp.types.lsp.MarkupKind.Markdown -number/cmp.types.lsp.CompletionItemTag.Deprecated -number/cmp.types.lsp.InsertTextFormat.PlainText -number/cmp.types.lsp.InsertTextFormat.Snippet -string/cmp.types.lsp.CompletionItemKind.1 -string/cmp.types.lsp.CompletionItemKind.2 -string/cmp.types.lsp.CompletionItemKind.3 -string/cmp.types.lsp.CompletionItemKind.4 -string/cmp.types.lsp.CompletionItemKind.5 -string/cmp.types.lsp.CompletionItemKind.6 -string/cmp.types.lsp.CompletionItemKind.7 -string/cmp.types.lsp.CompletionItemKind.8 -string/cmp.types.lsp.CompletionItemKind.9 -string/cmp.types.lsp.CompletionItemKind.10 -string/cmp.types.lsp.CompletionItemKind.11 -string/cmp.types.lsp.CompletionItemKind.12 -string/cmp.types.lsp.CompletionItemKind.13 -string/cmp.types.lsp.CompletionItemKind.14 -string/cmp.types.lsp.CompletionItemKind.15 -string/cmp.types.lsp.CompletionItemKind.16 -string/cmp.types.lsp.CompletionItemKind.17 -string/cmp.types.lsp.CompletionItemKind.18 -string/cmp.types.lsp.CompletionItemKind.19 -string/cmp.types.lsp.CompletionItemKind.20 -string/cmp.types.lsp.CompletionItemKind.21 -string/cmp.types.lsp.CompletionItemKind.22 -string/cmp.types.lsp.CompletionItemKind.23 -string/cmp.types.lsp.CompletionItemKind.24 -string/cmp.types.lsp.CompletionItemKind.25 -number/cmp.types.lsp.CompletionItemKind.Property -number/cmp.types.lsp.CompletionItemKind.Unit -number/cmp.types.lsp.CompletionItemKind.Value -number/cmp.types.lsp.CompletionItemKind.Enum -number/cmp.types.lsp.CompletionItemKind.Color -number/cmp.types.lsp.CompletionItemKind.Function -number/cmp.types.lsp.CompletionItemKind.Reference -number/cmp.types.lsp.CompletionItemKind.Folder -number/cmp.types.lsp.CompletionItemKind.EnumMember -number/cmp.types.lsp.CompletionItemKind.Struct -number/cmp.types.lsp.CompletionItemKind.Operator -number/cmp.types.lsp.CompletionItemKind.Keyword -number/cmp.types.lsp.CompletionItemKind.TypeParameter -number/cmp.types.lsp.CompletionItemKind.File -number/cmp.types.lsp.CompletionItemKind.Constant -number/cmp.types.lsp.CompletionItemKind.Event -number/cmp.types.lsp.CompletionItemKind.Snippet -number/cmp.types.lsp.CompletionItemKind.Text -number/cmp.types.lsp.CompletionItemKind.Method -number/cmp.types.lsp.CompletionItemKind.Constructor -number/cmp.types.lsp.CompletionItemKind.Field -number/cmp.types.lsp.CompletionItemKind.Variable -number/cmp.types.lsp.CompletionItemKind.Class -number/cmp.types.lsp.CompletionItemKind.Interface -number/cmp.types.lsp.CompletionItemKind.Module -string/cmp.types.lsp.PositionEncodingKind.UTF32 -string/cmp.types.lsp.PositionEncodingKind.UTF8 -string/cmp.types.lsp.PositionEncodingKind.UTF16 -function/2/cmp.types.lsp.Range.to_vim -function/2/cmp.types.lsp.Range.to_lsp -number/cmp.types.lsp.CompletionTriggerKind.Invoked -number/cmp.types.lsp.CompletionTriggerKind.TriggerCharacter -number/cmp.types.lsp.CompletionTriggerKind.TriggerForIncompleteCompletions -function/2/cmp.types.lsp.Position.to_vim -function/3/cmp.types.lsp.Position.to_utf32 -function/2/cmp.types.lsp.Position.to_lsp -function/3/cmp.types.lsp.Position.to_utf8 -function/3/cmp.types.lsp.Position.to_utf16 -function/0/vscode.colors.get_colors -function/3/cmp.utils.event.on -function/3/cmp.utils.event.off -function/1/cmp.utils.event.clear -function/2/cmp.utils.event.emit -function/0/cmp.utils.event.new -function/1/cmp.view.docs_view.visible -function/1/cmp.view.docs_view.close -function/2/cmp.view.docs_view.scroll -function/3/cmp.view.docs_view.open -function/0/cmp.view.docs_view.new -function/0/nvim-tree.actions.finders.search-node.fn -function/1/luasnip.loaders.from_vscode._load_lazy_loaded_ft -function/1/luasnip.loaders.from_vscode._load_lazy_loaded -function/1/luasnip.loaders.from_vscode.load -function/1/luasnip.loaders.from_vscode.lazy_load -function/1/luasnip.loaders.from_vscode._reload_file -function/0/luasnip.loaders.from_vscode.edit_snippet_files -function/1/nvim-tree.actions.node.run-command.run_file_command -function/1/cmp.view.native_entries_view.get_entries -function/1/cmp.view.native_entries_view.ready -function/1/cmp.view.native_entries_view.abort -function/2/cmp.view.native_entries_view.select_next_item -function/1/cmp.view.native_entries_view.get_active_entry -function/2/cmp.view.native_entries_view.select_prev_item -function/1/cmp.view.native_entries_view.close -function/1/cmp.view.native_entries_view.info -function/1/cmp.view.native_entries_view.on_change -function/1/cmp.view.native_entries_view.visible -function/3/cmp.view.native_entries_view.open -function/1/cmp.view.native_entries_view.get_offset -function/2/cmp.view.native_entries_view.preselect -function/1/cmp.view.native_entries_view.get_first_entry -function/1/cmp.view.native_entries_view.get_selected_entry -function/0/cmp.view.native_entries_view.new -string/nvim-tree.actions.node.system-open.config.system_open.cmd -function/1/nvim-tree.actions.node.system-open.setup -function/1/nvim-tree.actions.node.system-open.fn -function/3/cmp.view.ghost_text_view.text_gen -function/1/cmp.view.ghost_text_view.hide -function/0/cmp.view.ghost_text_view.new -number/cmp.view.ghost_text_view.ns -function/2/cmp.view.ghost_text_view.show -number/luasnip.util.types.exitNode -number/luasnip.util.types.choiceNode -number/luasnip.util.types.snippet -string/luasnip.util.types.names_pascal_case.1 -string/luasnip.util.types.names_pascal_case.2 -string/luasnip.util.types.names_pascal_case.3 -string/luasnip.util.types.names_pascal_case.4 -string/luasnip.util.types.names_pascal_case.5 -string/luasnip.util.types.names_pascal_case.6 -string/luasnip.util.types.names_pascal_case.7 -string/luasnip.util.types.names_pascal_case.8 -string/luasnip.util.types.names_pascal_case.9 -number/luasnip.util.types.restoreNode -number/luasnip.util.types.functionNode -number/luasnip.util.types.node_types.1 -number/luasnip.util.types.node_types.2 -number/luasnip.util.types.node_types.3 -number/luasnip.util.types.node_types.4 -number/luasnip.util.types.node_types.5 -number/luasnip.util.types.node_types.6 -number/luasnip.util.types.node_types.7 -number/luasnip.util.types.node_types.8 -number/luasnip.util.types.node_types.9 -number/luasnip.util.types.dynamicNode -string/luasnip.util.types.names.1 -string/luasnip.util.types.names.2 -string/luasnip.util.types.names.3 -string/luasnip.util.types.names.4 -string/luasnip.util.types.names.5 -string/luasnip.util.types.names.6 -string/luasnip.util.types.names.7 -string/luasnip.util.types.names.8 -string/luasnip.util.types.names.9 -number/luasnip.util.types.insertNode -number/luasnip.util.types.textNode -number/luasnip.util.types.snippetNode -function/1/luasnip.util.ext_opts.clear_invalid -function/1/luasnip.util.ext_opts.child_complete -function/2/luasnip.util.ext_opts.child_extend -function/2/luasnip.util.ext_opts.extend -function/2/luasnip.util.ext_opts.child_set_abs_prio -function/2/luasnip.util.ext_opts.set_abs_prio -function/1/luasnip.util.ext_opts.complete -function/0/luasnip.extras.filetype_functions.from_pos_or_filetype -function/1/luasnip.extras.filetype_functions.extend_load_ft -function/0/luasnip.extras.filetype_functions.from_cursor_pos -function/0/luasnip.extras.filetype_functions.from_filetype -function/1/luasnip.extras.filetype_functions.from_filetype_load -function/2/Comment.utils.ignore -function/1/Comment.utils.is_empty -number/Comment.utils.cmotion.block -number/Comment.utils.cmotion.V -number/Comment.utils.cmotion.v -number/Comment.utils.cmotion.line -number/Comment.utils.cmotion.char -function/1/Comment.utils.get_pad -function/1/Comment.utils.get_padpat -function/5/Comment.utils.uncommenter -function/1/Comment.utils.get_region -function/1/Comment.utils.catch -function/5/Comment.utils.is_commented -function/1/Comment.utils.get_count_lines -function/1/Comment.utils.get_lines -function/1/Comment.utils.unwrap_cstr -function/1/Comment.utils.is_fn -number/Comment.utils.cmode.uncomment -number/Comment.utils.cmode.comment -number/Comment.utils.cmode.toggle -function/2/Comment.utils.parse_cstr -number/Comment.utils.ctype.linewise -number/Comment.utils.ctype.blockwise -function/6/Comment.utils.commenter -string/luasnip.session.config.ext_opts.1.unvisited.hl_group -string/luasnip.session.config.ext_opts.1.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.1.passive.hl_group -string/luasnip.session.config.ext_opts.1.visited.hl_group -string/luasnip.session.config.ext_opts.1.active.hl_group -string/luasnip.session.config.ext_opts.2.unvisited.hl_group -string/luasnip.session.config.ext_opts.2.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.2.passive.hl_group -string/luasnip.session.config.ext_opts.2.visited.hl_group -string/luasnip.session.config.ext_opts.2.active.hl_group -string/luasnip.session.config.ext_opts.3.unvisited.hl_group -string/luasnip.session.config.ext_opts.3.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.3.passive.hl_group -string/luasnip.session.config.ext_opts.3.visited.hl_group -string/luasnip.session.config.ext_opts.3.active.hl_group -string/luasnip.session.config.ext_opts.4.unvisited.hl_group -string/luasnip.session.config.ext_opts.4.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.4.passive.hl_group -string/luasnip.session.config.ext_opts.4.visited.hl_group -string/luasnip.session.config.ext_opts.4.active.hl_group -string/luasnip.session.config.ext_opts.5.unvisited.hl_group -string/luasnip.session.config.ext_opts.5.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.5.passive.hl_group -string/luasnip.session.config.ext_opts.5.visited.hl_group -string/luasnip.session.config.ext_opts.5.active.hl_group -string/luasnip.session.config.ext_opts.6.unvisited.hl_group -string/luasnip.session.config.ext_opts.6.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.6.passive.hl_group -string/luasnip.session.config.ext_opts.6.visited.hl_group -string/luasnip.session.config.ext_opts.6.active.hl_group -string/luasnip.session.config.ext_opts.7.unvisited.hl_group -string/luasnip.session.config.ext_opts.7.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.7.passive.hl_group -string/luasnip.session.config.ext_opts.7.visited.hl_group -string/luasnip.session.config.ext_opts.7.active.hl_group -string/luasnip.session.config.ext_opts.8.unvisited.hl_group -string/luasnip.session.config.ext_opts.8.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.8.passive.hl_group -string/luasnip.session.config.ext_opts.8.visited.hl_group -string/luasnip.session.config.ext_opts.8.active.hl_group -string/luasnip.session.config.ext_opts.9.unvisited.hl_group -string/luasnip.session.config.ext_opts.9.snippet_passive.hl_group -string/luasnip.session.config.ext_opts.9.passive.hl_group -string/luasnip.session.config.ext_opts.9.visited.hl_group -string/luasnip.session.config.ext_opts.9.active.hl_group -number/luasnip.session.config.ext_base_prio -number/luasnip.session.config.ext_prio_increase -boolean/luasnip.session.config.enable_autosnippets -function/2/luasnip.session.config.parser_nested_assembler -function/0/luasnip.session.config.ft_func -boolean/luasnip.session.config.history -string/luasnip.session.config.update_events -function/1/luasnip.session.config.load_ft_func -number/luasnip.session.ns_id -string/luasnip.session.ft_redirect..1 -string/luasnip.session.ft_redirect.nix.1 -string/luasnip.session.ft_redirect.all.1 -string/luasnip.session.ft_redirect.cmp_menu.1 -string/luasnip.session.ft_redirect.lua.1 -string/luasnip.session.ft_redirect.vim.1 -string/luasnip.session.ft_redirect.WhichKey.1 -string/luasnip.session.ft_redirect.cmp_docs.1 -string/luasnip.session.ft_redirect.help.1 -boolean/luasnip.session.jump_active -function/1/Comment.opfunc.linewise -function/4/Comment.opfunc.count -function/2/Comment.opfunc.blockwise -function/4/Comment.opfunc.opfunc -function/2/Comment.extra.insert_above -function/2/Comment.extra.insert_below -function/2/Comment.extra.insert_eol -function/3/luasnip.nodes.insertNode.I -function/1/vim.lsp.formatexpr -function/4/vim.lsp.codelens.on_codelens -function/3/vim.lsp.codelens.save -function/0/vim.lsp.codelens.refresh -function/3/vim.lsp.codelens.display -function/1/vim.lsp.codelens.get -function/0/vim.lsp.codelens.run -function/1/vim.lsp.rpc.format_rpc_error -function/2/vim.lsp.rpc.connect -string/vim.lsp.rpc.client_errors.1 -string/vim.lsp.rpc.client_errors.2 -string/vim.lsp.rpc.client_errors.3 -string/vim.lsp.rpc.client_errors.4 -string/vim.lsp.rpc.client_errors.5 -string/vim.lsp.rpc.client_errors.6 -string/vim.lsp.rpc.client_errors.7 -number/vim.lsp.rpc.client_errors.SERVER_RESULT_CALLBACK_ERROR -number/vim.lsp.rpc.client_errors.INVALID_SERVER_MESSAGE -number/vim.lsp.rpc.client_errors.INVALID_SERVER_JSON -number/vim.lsp.rpc.client_errors.NO_RESULT_CALLBACK_FOUND -number/vim.lsp.rpc.client_errors.READ_ERROR -number/vim.lsp.rpc.client_errors.NOTIFICATION_HANDLER_ERROR -number/vim.lsp.rpc.client_errors.SERVER_REQUEST_HANDLER_ERROR -function/3/vim.lsp.rpc.create_read_loop -function/4/vim.lsp.rpc.start -function/3/vim.lsp.rpc.rpc_response_error -function/3/vim.lsp.rpc_response_error -string/vim.lsp._request_name_to_capability.textDocument/prepareCallHierarchy.1 -string/vim.lsp._request_name_to_capability.textDocument/rename.1 -string/vim.lsp._request_name_to_capability.textDocument/prepareRename.1 -string/vim.lsp._request_name_to_capability.textDocument/prepareRename.2 -string/vim.lsp._request_name_to_capability.textDocument/codeAction.1 -string/vim.lsp._request_name_to_capability.textDocument/codeLens.1 -string/vim.lsp._request_name_to_capability.textDocument/hover.1 -string/vim.lsp._request_name_to_capability.codeLens/resolve.1 -string/vim.lsp._request_name_to_capability.codeLens/resolve.2 -string/vim.lsp._request_name_to_capability.textDocument/signatureHelp.1 -string/vim.lsp._request_name_to_capability.workspace/executeCommand.1 -string/vim.lsp._request_name_to_capability.textDocument/definition.1 -string/vim.lsp._request_name_to_capability.workspace/symbol.1 -string/vim.lsp._request_name_to_capability.textDocument/implementation.1 -string/vim.lsp._request_name_to_capability.textDocument/references.1 -string/vim.lsp._request_name_to_capability.textDocument/rangeFormatting.1 -string/vim.lsp._request_name_to_capability.textDocument/formatting.1 -string/vim.lsp._request_name_to_capability.textDocument/completion.1 -string/vim.lsp._request_name_to_capability.textDocument/documentHighlight.1 -string/vim.lsp._request_name_to_capability.textDocument/declaration.1 -string/vim.lsp._request_name_to_capability.textDocument/typeDefinition.1 -string/vim.lsp._request_name_to_capability.textDocument/documentSymbol.1 -function/4/vim.lsp.buf_request -function/4/vim.lsp.diagnostic.get_line_diagnostics -function/1/vim.lsp.diagnostic.get_namespace -function/2/vim.lsp.diagnostic.reset -function/4/vim.lsp.diagnostic.on_publish_diagnostics -function/4/vim.lsp.buf_request_all -function/2/vim.lsp.for_each_buffer_client -function/4/vim.lsp.buf_request_sync -function/1/vim.lsp.buf.implementation -function/0/vim.lsp.buf.server_ready -function/2/vim.lsp.buf.references -function/2/vim.lsp.buf.rename -function/0/vim.lsp.buf.incoming_calls -function/0/vim.lsp.buf.outgoing_calls -function/0/vim.lsp.buf.signature_help -function/1/vim.lsp.buf.execute_command -function/1/vim.lsp.buf.type_definition -function/3/vim.lsp.buf.range_code_action -function/1/vim.lsp.buf.code_action -function/2/vim.lsp.buf.formatting_sync -function/0/vim.lsp.buf.document_highlight -function/0/vim.lsp.buf.clear_references -function/3/vim.lsp.buf.formatting_seq_sync -function/1/vim.lsp.buf.add_workspace_folder -function/2/vim.lsp.buf.workspace_symbol -function/3/vim.lsp.buf.range_formatting -function/1/vim.lsp.buf.document_symbol -function/1/vim.lsp.buf.remove_workspace_folder -function/0/vim.lsp.buf.list_workspace_folders -function/1/vim.lsp.buf.formatting -function/0/vim.lsp.buf.hover -function/1/vim.lsp.buf.declaration -function/1/vim.lsp.buf.completion -function/1/vim.lsp.buf.definition -function/1/vim.lsp.buf.format -function/3/vim.lsp.buf_notify -function/2/vim.lsp.buf_is_attached -function/1/vim.lsp._cmd_parts -function/1/vim.lsp.get_active_clients -function/2/vim.lsp.buf_attach_client -function/1/vim.lsp.start_client -function/3/vim.lsp._with_extend -function/4/vim.lsp.handlers.callHierarchy/incomingCalls -function/4/vim.lsp.handlers.textDocument/rename -function/4/vim.lsp.handlers.client/registerCapability -function/4/vim.lsp.handlers.window/showMessage -function/4/vim.lsp.handlers.window/logMessage -function/4/vim.lsp.handlers.callHierarchy/outgoingCalls -function/4/vim.lsp.handlers.textDocument/codeLens -function/4/vim.lsp.handlers.workspace/applyEdit -function/4/vim.lsp.handlers.textDocument/declaration -function/4/vim.lsp.handlers.signature_help -function/4/vim.lsp.handlers.workspace/executeCommand -function/4/vim.lsp.handlers.textDocument/definition -function/4/vim.lsp.handlers.workspace/symbol -function/4/vim.lsp.handlers.workspace/configuration -function/4/vim.lsp.handlers.textDocument/references -function/4/vim.lsp.handlers.textDocument/signatureHelp -function/4/vim.lsp.handlers.textDocument/rangeFormatting -function/4/vim.lsp.handlers.workspace/workspaceFolders -function/4/vim.lsp.handlers.textDocument/formatting -function/4/vim.lsp.handlers.textDocument/implementation -function/4/vim.lsp.handlers.textDocument/publishDiagnostics -function/4/vim.lsp.handlers.textDocument/typeDefinition -function/4/vim.lsp.handlers.textDocument/documentHighlight -function/4/vim.lsp.handlers.$/progress -function/4/vim.lsp.handlers.window/workDoneProgress/create -function/4/vim.lsp.handlers.textDocument/hover -function/4/vim.lsp.handlers.window/showMessageRequest -function/4/vim.lsp.handlers.hover -function/4/vim.lsp.handlers.textDocument/documentSymbol -function/4/vim.lsp.handlers.textDocument/completion -function/2/vim.lsp.start -function/0/vim.lsp.get_log_path -function/1/vim.lsp.set_log_level -function/0/vim.lsp.client -string/vim.lsp.client_errors.1 -string/vim.lsp.client_errors.2 -string/vim.lsp.client_errors.3 -string/vim.lsp.client_errors.4 -string/vim.lsp.client_errors.5 -string/vim.lsp.client_errors.6 -string/vim.lsp.client_errors.7 -string/vim.lsp.client_errors.8 -number/vim.lsp.client_errors.SERVER_RESULT_CALLBACK_ERROR -number/vim.lsp.client_errors.ON_INIT_CALLBACK_ERROR -number/vim.lsp.client_errors.INVALID_SERVER_MESSAGE -number/vim.lsp.client_errors.INVALID_SERVER_JSON -number/vim.lsp.client_errors.NO_RESULT_CALLBACK_FOUND -number/vim.lsp.client_errors.READ_ERROR -number/vim.lsp.client_errors.NOTIFICATION_HANDLER_ERROR -number/vim.lsp.client_errors.SERVER_REQUEST_HANDLER_ERROR -function/1/vim.lsp.client_is_stopped -function/1/vim.lsp.buf_get_clients -string/vim.lsp.log_levels.0 -string/vim.lsp.log_levels.1 -string/vim.lsp.log_levels.2 -string/vim.lsp.log_levels.3 -string/vim.lsp.log_levels.4 -string/vim.lsp.log_levels.5 -number/vim.lsp.log_levels.INFO -number/vim.lsp.log_levels.DEBUG -number/vim.lsp.log_levels.TRACE -number/vim.lsp.log_levels.WARN -number/vim.lsp.log_levels.ERROR -number/vim.lsp.log_levels.OFF -function/3/vim.lsp.util.rename -function/1/vim.lsp.util.parse_snippet -function/3/vim.lsp.util.open_floating_preview -function/1/vim.lsp.util._get_symbol_kind_name -function/0/vim.lsp.util.get_progress_messages -function/3/vim.lsp.util.stylize_markdown -function/1/vim.lsp.util.trim_empty_lines -function/2/vim.lsp.util._make_floating_popup_size -function/1/vim.lsp.util.try_trim_markdown_code_blocks -function/1/vim.lsp.util._get_offset_encoding -function/1/vim.lsp.util.make_text_document_params -function/3/vim.lsp.util.make_floating_popup_options -function/2/vim.lsp.util.make_range_params -function/4/vim.lsp.util.make_given_range_params -function/3/vim.lsp.util.apply_text_document_edit -function/2/vim.lsp.util.make_workspace_params -function/2/vim.lsp.util.make_position_params -function/1/vim.lsp.util.extract_completion_items -number/vim.lsp.util.buf_versions.1 -function/2/vim.lsp.util.text_document_completion_list_to_complete_items -function/2/vim.lsp.util.apply_workspace_edit -function/2/vim.lsp.util.convert_input_to_markdown_lines -function/2/vim.lsp.util.preview_location -function/1/vim.lsp.util._get_completion_item_kind_name -function/3/vim.lsp.util._str_utfindex_enc -function/3/vim.lsp.util._get_line_byte_from_position -function/2/vim.lsp.util._trim -function/2/vim.lsp.util.lookup_section -function/4/vim.lsp.util.character_offset -function/3/vim.lsp.util.convert_signature_help_to_markdown_lines -function/1/vim.lsp.util.make_formatting_params -function/3/vim.lsp.util.apply_text_edits -function/1/vim.lsp.util.get_effective_tabstop -function/3/vim.lsp.util.buf_highlight_references -function/3/vim.lsp.util._str_byteindex_enc -function/2/vim.lsp.util.locations_to_items -function/4/vim.lsp.util.set_lines -function/1/vim.lsp.util.buf_clear_references -function/3/vim.lsp.util.jump_to_location -function/2/vim.lsp.util.symbols_to_items -function/1/vim.lsp.get_buffers_by_client_id -function/1/vim.lsp.protocol.resolve_capabilities -string/vim.lsp.protocol.DocumentHighlightKind.1 -string/vim.lsp.protocol.DocumentHighlightKind.2 -string/vim.lsp.protocol.DocumentHighlightKind.3 -number/vim.lsp.protocol.DocumentHighlightKind.Text -number/vim.lsp.protocol.DocumentHighlightKind.Write -number/vim.lsp.protocol.DocumentHighlightKind.Read -string/vim.lsp.protocol.InitializeError.1 -number/vim.lsp.protocol.InitializeError.unknownProtocolVersion -string/vim.lsp.protocol.WatchKind.1 -string/vim.lsp.protocol.WatchKind.2 -number/vim.lsp.protocol.WatchKind.Delete -string/vim.lsp.protocol.WatchKind.4 -number/vim.lsp.protocol.WatchKind.Create -number/vim.lsp.protocol.WatchKind.Change -string/vim.lsp.protocol.MessageType.1 -string/vim.lsp.protocol.MessageType.2 -string/vim.lsp.protocol.MessageType.3 -string/vim.lsp.protocol.MessageType.4 -number/vim.lsp.protocol.MessageType.Warning -number/vim.lsp.protocol.MessageType.Log -number/vim.lsp.protocol.MessageType.Info -number/vim.lsp.protocol.MessageType.Error -string/vim.lsp.protocol.CodeActionKind.RefactorInline -string/vim.lsp.protocol.CodeActionKind.refactor.inline -string/vim.lsp.protocol.CodeActionKind.RefactorRewrite -string/vim.lsp.protocol.CodeActionKind.refactor.rewrite -string/vim.lsp.protocol.CodeActionKind.Source -string/vim.lsp.protocol.CodeActionKind.SourceOrganizeImports -string/vim.lsp.protocol.CodeActionKind.source.organizeImports -string/vim.lsp.protocol.CodeActionKind.source -string/vim.lsp.protocol.CodeActionKind. -string/vim.lsp.protocol.CodeActionKind.Empty -string/vim.lsp.protocol.CodeActionKind.QuickFix -string/vim.lsp.protocol.CodeActionKind.quickfix -string/vim.lsp.protocol.CodeActionKind.Refactor -string/vim.lsp.protocol.CodeActionKind.refactor -string/vim.lsp.protocol.CodeActionKind.RefactorExtract -string/vim.lsp.protocol.CodeActionKind.refactor.extract -function/1/vim.lsp.protocol._resolve_capabilities_compat -string/vim.lsp.protocol.CompletionTriggerKind.1 -string/vim.lsp.protocol.CompletionTriggerKind.2 -string/vim.lsp.protocol.CompletionTriggerKind.3 -number/vim.lsp.protocol.CompletionTriggerKind.Invoked -number/vim.lsp.protocol.CompletionTriggerKind.TriggerCharacter -number/vim.lsp.protocol.CompletionTriggerKind.TriggerForIncompleteCompletions -string/vim.lsp.protocol.TextDocumentSaveReason.1 -string/vim.lsp.protocol.TextDocumentSaveReason.2 -string/vim.lsp.protocol.TextDocumentSaveReason.3 -number/vim.lsp.protocol.TextDocumentSaveReason.FocusOut -number/vim.lsp.protocol.TextDocumentSaveReason.AfterDelay -number/vim.lsp.protocol.TextDocumentSaveReason.Manual -string/vim.lsp.protocol.TextDocumentSyncKind.0 -string/vim.lsp.protocol.TextDocumentSyncKind.1 -string/vim.lsp.protocol.TextDocumentSyncKind.2 -number/vim.lsp.protocol.TextDocumentSyncKind.None -number/vim.lsp.protocol.TextDocumentSyncKind.Incremental -number/vim.lsp.protocol.TextDocumentSyncKind.Full -string/vim.lsp.protocol.ErrorCodes.-32603 -string/vim.lsp.protocol.ErrorCodes.-32700 -string/vim.lsp.protocol.ErrorCodes.-32000 -string/vim.lsp.protocol.ErrorCodes.-32002 -number/vim.lsp.protocol.ErrorCodes.ContentModified -string/vim.lsp.protocol.ErrorCodes.-32800 -number/vim.lsp.protocol.ErrorCodes.ParseError -number/vim.lsp.protocol.ErrorCodes.InvalidRequest -number/vim.lsp.protocol.ErrorCodes.InvalidParams -number/vim.lsp.protocol.ErrorCodes.InternalError -number/vim.lsp.protocol.ErrorCodes.serverErrorStart -number/vim.lsp.protocol.ErrorCodes.MethodNotFound -number/vim.lsp.protocol.ErrorCodes.ServerNotInitialized -number/vim.lsp.protocol.ErrorCodes.UnknownErrorCode -number/vim.lsp.protocol.ErrorCodes.RequestCancelled -string/vim.lsp.protocol.ErrorCodes.-32099 -string/vim.lsp.protocol.ErrorCodes.-32001 -string/vim.lsp.protocol.ErrorCodes.-32801 -string/vim.lsp.protocol.ErrorCodes.-32601 -string/vim.lsp.protocol.ErrorCodes.-32602 -number/vim.lsp.protocol.ErrorCodes.serverErrorEnd -string/vim.lsp.protocol.ErrorCodes.-32600 -string/vim.lsp.protocol.InsertTextFormat.1 -string/vim.lsp.protocol.InsertTextFormat.2 -number/vim.lsp.protocol.InsertTextFormat.PlainText -number/vim.lsp.protocol.InsertTextFormat.Snippet -string/vim.lsp.protocol.CompletionItemKind.1 -string/vim.lsp.protocol.CompletionItemKind.2 -string/vim.lsp.protocol.CompletionItemKind.3 -string/vim.lsp.protocol.CompletionItemKind.4 -string/vim.lsp.protocol.CompletionItemKind.5 -string/vim.lsp.protocol.CompletionItemKind.6 -string/vim.lsp.protocol.CompletionItemKind.7 -string/vim.lsp.protocol.CompletionItemKind.8 -string/vim.lsp.protocol.CompletionItemKind.9 -string/vim.lsp.protocol.CompletionItemKind.10 -string/vim.lsp.protocol.CompletionItemKind.11 -string/vim.lsp.protocol.CompletionItemKind.12 -string/vim.lsp.protocol.CompletionItemKind.13 -string/vim.lsp.protocol.CompletionItemKind.14 -string/vim.lsp.protocol.CompletionItemKind.15 -string/vim.lsp.protocol.CompletionItemKind.16 -string/vim.lsp.protocol.CompletionItemKind.17 -string/vim.lsp.protocol.CompletionItemKind.18 -string/vim.lsp.protocol.CompletionItemKind.19 -string/vim.lsp.protocol.CompletionItemKind.20 -string/vim.lsp.protocol.CompletionItemKind.21 -string/vim.lsp.protocol.CompletionItemKind.22 -string/vim.lsp.protocol.CompletionItemKind.23 -string/vim.lsp.protocol.CompletionItemKind.24 -string/vim.lsp.protocol.CompletionItemKind.25 -number/vim.lsp.protocol.CompletionItemKind.Property -number/vim.lsp.protocol.CompletionItemKind.Unit -number/vim.lsp.protocol.CompletionItemKind.Value -number/vim.lsp.protocol.CompletionItemKind.Enum -number/vim.lsp.protocol.CompletionItemKind.Color -number/vim.lsp.protocol.CompletionItemKind.Function -number/vim.lsp.protocol.CompletionItemKind.Reference -number/vim.lsp.protocol.CompletionItemKind.Folder -number/vim.lsp.protocol.CompletionItemKind.EnumMember -number/vim.lsp.protocol.CompletionItemKind.Struct -number/vim.lsp.protocol.CompletionItemKind.Operator -number/vim.lsp.protocol.CompletionItemKind.Keyword -number/vim.lsp.protocol.CompletionItemKind.File -number/vim.lsp.protocol.CompletionItemKind.TypeParameter -number/vim.lsp.protocol.CompletionItemKind.Class -number/vim.lsp.protocol.CompletionItemKind.Snippet -number/vim.lsp.protocol.CompletionItemKind.Event -number/vim.lsp.protocol.CompletionItemKind.Text -number/vim.lsp.protocol.CompletionItemKind.Method -number/vim.lsp.protocol.CompletionItemKind.Constructor -number/vim.lsp.protocol.CompletionItemKind.Field -number/vim.lsp.protocol.CompletionItemKind.Variable -number/vim.lsp.protocol.CompletionItemKind.Constant -number/vim.lsp.protocol.CompletionItemKind.Interface -number/vim.lsp.protocol.CompletionItemKind.Module -string/vim.lsp.protocol.MarkupKind.PlainText -string/vim.lsp.protocol.MarkupKind.markdown -string/vim.lsp.protocol.MarkupKind.Markdown -string/vim.lsp.protocol.MarkupKind.plaintext -string/vim.lsp.protocol.ResourceOperationKind.create -string/vim.lsp.protocol.ResourceOperationKind.Rename -string/vim.lsp.protocol.ResourceOperationKind.Create -string/vim.lsp.protocol.ResourceOperationKind.Delete -string/vim.lsp.protocol.ResourceOperationKind.rename -string/vim.lsp.protocol.ResourceOperationKind.delete -string/vim.lsp.protocol.DiagnosticSeverity.1 -string/vim.lsp.protocol.DiagnosticSeverity.2 -string/vim.lsp.protocol.DiagnosticSeverity.3 -string/vim.lsp.protocol.DiagnosticSeverity.4 -number/vim.lsp.protocol.DiagnosticSeverity.Warning -number/vim.lsp.protocol.DiagnosticSeverity.Information -number/vim.lsp.protocol.DiagnosticSeverity.Hint -number/vim.lsp.protocol.DiagnosticSeverity.Error -function/0/vim.lsp.protocol.make_client_capabilities -string/vim.lsp.protocol.FailureHandlingKind.TextOnlyTransactional -string/vim.lsp.protocol.FailureHandlingKind.textOnlyTransactional -string/vim.lsp.protocol.FailureHandlingKind.Undo -string/vim.lsp.protocol.FailureHandlingKind.undo -string/vim.lsp.protocol.FailureHandlingKind.abort -string/vim.lsp.protocol.FailureHandlingKind.Abort -string/vim.lsp.protocol.FailureHandlingKind.Transactional -string/vim.lsp.protocol.FailureHandlingKind.transactional -string/vim.lsp.protocol.DiagnosticTag.1 -string/vim.lsp.protocol.DiagnosticTag.2 -number/vim.lsp.protocol.DiagnosticTag.Unnecessary -number/vim.lsp.protocol.DiagnosticTag.Deprecated -string/vim.lsp.protocol.SymbolKind.1 -string/vim.lsp.protocol.SymbolKind.2 -string/vim.lsp.protocol.SymbolKind.3 -string/vim.lsp.protocol.SymbolKind.4 -string/vim.lsp.protocol.SymbolKind.5 -string/vim.lsp.protocol.SymbolKind.6 -string/vim.lsp.protocol.SymbolKind.7 -string/vim.lsp.protocol.SymbolKind.8 -string/vim.lsp.protocol.SymbolKind.9 -string/vim.lsp.protocol.SymbolKind.10 -string/vim.lsp.protocol.SymbolKind.11 -string/vim.lsp.protocol.SymbolKind.12 -string/vim.lsp.protocol.SymbolKind.13 -string/vim.lsp.protocol.SymbolKind.14 -string/vim.lsp.protocol.SymbolKind.15 -string/vim.lsp.protocol.SymbolKind.16 -string/vim.lsp.protocol.SymbolKind.17 -string/vim.lsp.protocol.SymbolKind.18 -string/vim.lsp.protocol.SymbolKind.19 -string/vim.lsp.protocol.SymbolKind.20 -string/vim.lsp.protocol.SymbolKind.21 -string/vim.lsp.protocol.SymbolKind.22 -string/vim.lsp.protocol.SymbolKind.23 -string/vim.lsp.protocol.SymbolKind.24 -string/vim.lsp.protocol.SymbolKind.25 -string/vim.lsp.protocol.SymbolKind.26 -number/vim.lsp.protocol.SymbolKind.Property -number/vim.lsp.protocol.SymbolKind.Boolean -number/vim.lsp.protocol.SymbolKind.Enum -number/vim.lsp.protocol.SymbolKind.Function -number/vim.lsp.protocol.SymbolKind.Namespace -number/vim.lsp.protocol.SymbolKind.EnumMember -number/vim.lsp.protocol.SymbolKind.Struct -number/vim.lsp.protocol.SymbolKind.Object -number/vim.lsp.protocol.SymbolKind.Key -number/vim.lsp.protocol.SymbolKind.Null -number/vim.lsp.protocol.SymbolKind.File -number/vim.lsp.protocol.SymbolKind.String -number/vim.lsp.protocol.SymbolKind.Constant -number/vim.lsp.protocol.SymbolKind.Number -number/vim.lsp.protocol.SymbolKind.Array -number/vim.lsp.protocol.SymbolKind.Operator -number/vim.lsp.protocol.SymbolKind.TypeParameter -number/vim.lsp.protocol.SymbolKind.Event -number/vim.lsp.protocol.SymbolKind.Package -number/vim.lsp.protocol.SymbolKind.Method -number/vim.lsp.protocol.SymbolKind.Constructor -number/vim.lsp.protocol.SymbolKind.Field -number/vim.lsp.protocol.SymbolKind.Variable -number/vim.lsp.protocol.SymbolKind.Class -number/vim.lsp.protocol.SymbolKind.Interface -number/vim.lsp.protocol.SymbolKind.Module -string/vim.lsp.protocol.FileChangeType.1 -string/vim.lsp.protocol.FileChangeType.2 -number/vim.lsp.protocol.FileChangeType.Created -number/vim.lsp.protocol.FileChangeType.Changed -number/vim.lsp.protocol.FileChangeType.Deleted -string/vim.lsp.protocol.FileChangeType.3 -function/2/vim.lsp.buf_detach_client -function/1/vim.lsp.get_client_by_id -function/2/vim.lsp.with -function/1/vim.lsp._unsupported_method -function/0/vim.lsp.tagfunc -function/2/vim.lsp.stop_client -function/2/vim.lsp.omnifunc -function/3/luasnip.nodes.snippet._S -function/3/luasnip.nodes.snippet.SN -function/4/luasnip.nodes.snippet.ISN -function/1/luasnip.nodes.snippet.init_snippet_context -function/1/luasnip.nodes.snippet.init_snippet_opts -function/1/luasnip.nodes.snippet.wrap_nodes_in_snippetNode -function/1/luasnip.nodes.snippet.Snippet.resolve_child_ext_opts -function/3/luasnip.nodes.snippet.Snippet.set_text -function/1/luasnip.nodes.snippet.Snippet.del_marks -function/2/luasnip.nodes.snippet.Snippet.enter_node -function/2/luasnip.nodes.snippet.Snippet.fake_expand -function/1/luasnip.nodes.snippet.Snippet.exit -boolean/luasnip.nodes.snippet.Snippet.visible -function/1/luasnip.nodes.snippet.Snippet.static_init -function/1/luasnip.nodes.snippet.Snippet.update_static -function/1/luasnip.nodes.snippet.Snippet.get_static_text -boolean/luasnip.nodes.snippet.Snippet.static_visible -function/1/luasnip.nodes.snippet.Snippet.copy -function/2/luasnip.nodes.snippet.Snippet.matches -function/1/luasnip.nodes.snippet.Snippet.dump -function/2/luasnip.nodes.snippet.Snippet.indent -function/3/luasnip.nodes.snippet.Snippet.input_enter -function/1/luasnip.nodes.snippet.Snippet.get_pattern_expand_helper -function/2/luasnip.nodes.snippet.Snippet.set_ext_opts -function/3/luasnip.nodes.snippet.Snippet.expand_tabs -boolean/luasnip.nodes.snippet.Snippet.merge_node_ext_opts -function/1/luasnip.nodes.snippet.Snippet.invalidate -function/1/luasnip.nodes.snippet.Snippet.update -boolean/luasnip.nodes.snippet.Snippet.visited -function/1/luasnip.nodes.snippet.Snippet.remove_from_jumplist -function/2/luasnip.nodes.snippet.Snippet.set_argnodes -function/1/luasnip.nodes.snippet.Snippet.subsnip_init -function/2/luasnip.nodes.snippet.Snippet.init_positions -function/2/luasnip.nodes.snippet.Snippet.init_insert_positions -function/1/luasnip.nodes.snippet.Snippet.make_args_absolute -function/1/luasnip.nodes.snippet.Snippet.text_only -function/3/luasnip.nodes.snippet.Snippet.event -function/1/luasnip.nodes.snippet.Snippet.set_dependents -function/4/luasnip.nodes.snippet.Snippet.trigger_expand -function/2/luasnip.nodes.snippet.Snippet.put_initial -function/2/luasnip.nodes.snippet.Snippet.insert_to_node_absolute -function/2/luasnip.nodes.snippet.Snippet.is_interactive -function/3/luasnip.nodes.snippet.Snippet.input_leave -function/1/luasnip.nodes.snippet.Snippet.update_all_dependents -function/4/luasnip.nodes.snippet.Snippet.jump_into -function/2/luasnip.nodes.snippet.Snippet.find_node -number/luasnip.nodes.snippet.Snippet.node_ext_opts.base_prio -function/3/luasnip.nodes.snippet.Snippet.set_mark_rgrav -function/1/luasnip.nodes.snippet.Snippet.get_docstring -function/1/luasnip.nodes.snippet.Snippet.init_nodes -function/1/luasnip.nodes.snippet.Snippet.update_restore -function/1/luasnip.nodes.snippet.Snippet.update_all_dependents_static -function/1/luasnip.nodes.snippet.Snippet.store -function/2/luasnip.nodes.snippet.Snippet.resolve_position -function/1/luasnip.nodes.snippet.P -function/3/luasnip.nodes.snippet.S -boolean/nvim-tree.renderer.components.modified.show_icon -function/1/nvim-tree.renderer.components.modified.setup -function/0/nvim-tree.renderer.components.modified.setup_signs -function/1/nvim-tree.renderer.components.modified.get_highlight -string/nvim-tree.renderer.components.modified.icon -function/1/nvim-tree.renderer.components.modified.get_icon -boolean/nvim-tree.renderer.components.padding.config.indent_markers.inline_arrows -string/nvim-tree.renderer.components.padding.config.indent_markers.icons.none -string/nvim-tree.renderer.components.padding.config.indent_markers.icons.corner -string/nvim-tree.renderer.components.padding.config.indent_markers.icons.edge -string/nvim-tree.renderer.components.padding.config.indent_markers.icons.item -string/nvim-tree.renderer.components.padding.config.indent_markers.icons.bottom -boolean/nvim-tree.renderer.components.padding.config.indent_markers.enable -boolean/nvim-tree.renderer.components.padding.config.symlink_destination -string/nvim-tree.renderer.components.padding.config.icons.git_placement -string/nvim-tree.renderer.components.padding.config.icons.modified_placement -string/nvim-tree.renderer.components.padding.config.icons.glyphs.default -string/nvim-tree.renderer.components.padding.config.icons.glyphs.git.unstaged -string/nvim-tree.renderer.components.padding.config.icons.glyphs.git.staged -string/nvim-tree.renderer.components.padding.config.icons.glyphs.git.ignored -string/nvim-tree.renderer.components.padding.config.icons.glyphs.git.unmerged -string/nvim-tree.renderer.components.padding.config.icons.glyphs.git.deleted -string/nvim-tree.renderer.components.padding.config.icons.glyphs.git.renamed -string/nvim-tree.renderer.components.padding.config.icons.glyphs.git.untracked -string/nvim-tree.renderer.components.padding.config.icons.glyphs.symlink -string/nvim-tree.renderer.components.padding.config.icons.glyphs.folder.default -string/nvim-tree.renderer.components.padding.config.icons.glyphs.folder.arrow_closed -string/nvim-tree.renderer.components.padding.config.icons.glyphs.folder.open -string/nvim-tree.renderer.components.padding.config.icons.glyphs.folder.empty -string/nvim-tree.renderer.components.padding.config.icons.glyphs.folder.empty_open -string/nvim-tree.renderer.components.padding.config.icons.glyphs.folder.symlink -string/nvim-tree.renderer.components.padding.config.icons.glyphs.folder.arrow_open -string/nvim-tree.renderer.components.padding.config.icons.glyphs.folder.symlink_open -string/nvim-tree.renderer.components.padding.config.icons.glyphs.bookmark -string/nvim-tree.renderer.components.padding.config.icons.glyphs.modified -string/nvim-tree.renderer.components.padding.config.icons.padding -string/nvim-tree.renderer.components.padding.config.icons.symlink_arrow -boolean/nvim-tree.renderer.components.padding.config.icons.show.folder -boolean/nvim-tree.renderer.components.padding.config.icons.show.folder_arrow -boolean/nvim-tree.renderer.components.padding.config.icons.show.git -boolean/nvim-tree.renderer.components.padding.config.icons.show.file -boolean/nvim-tree.renderer.components.padding.config.icons.show.modified -boolean/nvim-tree.renderer.components.padding.config.icons.webdev_colors -string/nvim-tree.renderer.components.padding.config.highlight_opened_files -boolean/nvim-tree.renderer.components.padding.config.modified.show_on_dirs -boolean/nvim-tree.renderer.components.padding.config.modified.enable -boolean/nvim-tree.renderer.components.padding.config.modified.show_on_open_dirs -boolean/nvim-tree.renderer.components.padding.config.add_trailing -boolean/nvim-tree.renderer.components.padding.config.group_empty -boolean/nvim-tree.renderer.components.padding.config.highlight_git -boolean/nvim-tree.renderer.components.padding.config.full_name -string/nvim-tree.renderer.components.padding.config.highlight_modified -string/nvim-tree.renderer.components.padding.config.root_folder_label -string/nvim-tree.renderer.components.padding.config.special_files.1 -string/nvim-tree.renderer.components.padding.config.special_files.2 -string/nvim-tree.renderer.components.padding.config.special_files.3 -string/nvim-tree.renderer.components.padding.config.special_files.4 -number/nvim-tree.renderer.components.padding.config.indent_width -function/5/nvim-tree.renderer.components.padding.get_padding -function/1/nvim-tree.renderer.components.padding.setup -function/1/nvim-tree.renderer.components.icons.setup -function/0/nvim-tree.renderer.components.icons.reset_config -function/0/nvim-tree.renderer.components.icons.devicons.get_icons -function/0/nvim-tree.renderer.components.icons.devicons.set_up_highlights -function/1/nvim-tree.renderer.components.icons.devicons.setup -function/0/nvim-tree.renderer.components.icons.devicons.has_loaded -function/1/nvim-tree.renderer.components.icons.devicons.get_icon_name_by_filetype -function/0/nvim-tree.renderer.components.icons.devicons.get_default_icon -function/2/nvim-tree.renderer.components.icons.devicons.get_icon_by_filetype -function/3/nvim-tree.renderer.components.icons.devicons.get_icon_colors -function/2/nvim-tree.renderer.components.icons.devicons.get_icon_colors_by_filetype -function/3/nvim-tree.renderer.components.icons.devicons.get_icon_color -function/2/nvim-tree.renderer.components.icons.devicons.get_icon_color_by_filetype -function/3/nvim-tree.renderer.components.icons.devicons.get_icon_cterm_color -function/2/nvim-tree.renderer.components.icons.devicons.get_icon_cterm_color_by_filetype -function/1/nvim-tree.renderer.components.icons.devicons.set_icon -function/3/nvim-tree.renderer.components.icons.devicons.set_default_icon -function/3/nvim-tree.renderer.components.icons.devicons.get_icon -function/1/nvim-tree.renderer.components.full-name.setup -number/nvim-tree.renderer.components.git.git_icons.DU.1.ord -string/nvim-tree.renderer.components.git.git_icons.DU.1.str -string/nvim-tree.renderer.components.git.git_icons.DU.1.hl -number/nvim-tree.renderer.components.git.git_icons.DU.2.ord -string/nvim-tree.renderer.components.git.git_icons.DU.2.str -string/nvim-tree.renderer.components.git.git_icons.DU.2.hl -number/nvim-tree.renderer.components.git.git_icons.dirty.1.ord -string/nvim-tree.renderer.components.git.git_icons.dirty.1.str -string/nvim-tree.renderer.components.git.git_icons.dirty.1.hl -number/nvim-tree.renderer.components.git.git_icons.!!.1.ord -string/nvim-tree.renderer.components.git.git_icons.!!.1.str -string/nvim-tree.renderer.components.git.git_icons.!!.1.hl -number/nvim-tree.renderer.components.git.git_icons.M .1.ord -string/nvim-tree.renderer.components.git.git_icons.M .1.str -string/nvim-tree.renderer.components.git.git_icons.M .1.hl -number/nvim-tree.renderer.components.git.git_icons. A.1.ord -string/nvim-tree.renderer.components.git.git_icons. A.1.str -string/nvim-tree.renderer.components.git.git_icons. A.1.hl -number/nvim-tree.renderer.components.git.git_icons.R .1.ord -string/nvim-tree.renderer.components.git.git_icons.R .1.str -string/nvim-tree.renderer.components.git.git_icons.R .1.hl -function/1/nvim-tree.renderer.components.git.setup -function/1/nvim-tree.renderer.components.git.setup_signs -function/0/nvim-tree.renderer.components.git.get_highlight -boolean/nvim-tree.renderer.components.git.git_show_on_open_dirs -function/1/nvim-tree.renderer.components.git.get_icons -function/4/luasnip.nodes.dynamicNode.D -function/1/nvim-tree.renderer.builder.unwrap -function/6/nvim-tree.renderer.builder._format_line -function/2/nvim-tree.renderer.builder.build_header -function/2/nvim-tree.renderer.builder._build_file_icon -function/2/nvim-tree.renderer.builder.configure_git_icons_placement -function/4/nvim-tree.renderer.builder._insert_highlight -function/2/nvim-tree.renderer.builder._insert_line -function/5/nvim-tree.renderer.builder._build_line -function/2/nvim-tree.renderer.builder._unwrap_highlighted_strings -function/2/nvim-tree.renderer.builder._get_nodes_number -function/2/nvim-tree.renderer.builder._build_folder -function/2/nvim-tree.renderer.builder.configure_root_label -function/2/nvim-tree.renderer.builder.configure_trailing_slash -function/2/nvim-tree.renderer.builder.configure_special_files -function/2/nvim-tree.renderer.builder.configure_picture_map -function/2/nvim-tree.renderer.builder.configure_opened_file_highlighting -function/2/nvim-tree.renderer.builder.configure_modified_highlighting -function/2/nvim-tree.renderer.builder.configure_icon_padding -function/2/nvim-tree.renderer.builder.configure_modified_placement -function/2/nvim-tree.renderer.builder.configure_symlink_destination -function/3/nvim-tree.renderer.builder.configure_filter -function/2/nvim-tree.renderer.builder._build_file -function/3/nvim-tree.renderer.builder.build -function/2/nvim-tree.renderer.builder._get_git_icons -function/2/nvim-tree.renderer.builder._get_modified_icon -function/2/nvim-tree.renderer.builder._build_symlink -function/3/nvim-tree.renderer.builder._get_highlight_override -function/1/nvim-tree.renderer.builder.new -number/vim.lsp.log.INFO -number/vim.lsp.log.DEBUG -number/vim.lsp.log.TRACE -function/0/vim.lsp.log.get_level -function/1/vim.lsp.log.set_format_func -function/1/vim.lsp.log.should_log -function/0/vim.lsp.log.warn -number/vim.lsp.log.WARN -number/vim.lsp.log.ERROR -function/1/vim.lsp.log.set_level -function/0/vim.lsp.log.get_filename -function/0/vim.lsp.log.debug -function/0/vim.lsp.log.trace -function/0/vim.lsp.log.info -function/0/vim.lsp.log.error -number/vim.lsp.log.OFF -function/0/lspconfig.server_configurations.clangd.commands.ClangdSwitchSourceHeader.1 -string/lspconfig.server_configurations.clangd.commands.ClangdSwitchSourceHeader.description -string/lspconfig.server_configurations.clangd.docs.default_config.root_dir -string/lspconfig.server_configurations.clangd.docs.default_config.capabilities -string/lspconfig.server_configurations.clangd.docs.description -function/1/lspconfig.server_configurations.clangd.default_config.root_dir -string/lspconfig.server_configurations.clangd.default_config.filetypes.1 -string/lspconfig.server_configurations.clangd.default_config.filetypes.2 -string/lspconfig.server_configurations.clangd.default_config.filetypes.3 -string/lspconfig.server_configurations.clangd.default_config.filetypes.4 -string/lspconfig.server_configurations.clangd.default_config.filetypes.5 -string/lspconfig.server_configurations.clangd.default_config.filetypes.6 -string/lspconfig.server_configurations.clangd.default_config.capabilities.offsetEncoding.1 -string/lspconfig.server_configurations.clangd.default_config.capabilities.offsetEncoding.2 -boolean/lspconfig.server_configurations.clangd.default_config.capabilities.textDocument.completion.editsNearCursor -boolean/lspconfig.server_configurations.clangd.default_config.single_file_support -string/lspconfig.server_configurations.clangd.default_config.cmd.1 -function/0/nvim-tree.marks.navigation.select -function/0/nvim-tree.marks.navigation.next -function/0/nvim-tree.marks.navigation.prev -function/7/vim.lsp.sync.compute_diff -function/1/cmp.utils.window.close -function/1/cmp.utils.window.get_content_height -function/3/cmp.utils.window.buffer_option -function/1/cmp.utils.window.update -function/1/cmp.utils.window.get_border_info -function/1/cmp.utils.window.visible -function/2/cmp.utils.window.open -function/1/cmp.utils.window.info -function/1/cmp.utils.window.get_buffer -function/2/cmp.utils.window.set_style -function/3/cmp.utils.window.option -function/0/cmp.utils.window.new -number/cmp.utils.buffer.cache.1 -number/cmp.utils.buffer.cache.3 -number/cmp.utils.buffer.cache.cmp.util.keymap.normalize -number/cmp.utils.buffer.cache.1thumb_buf -function/1/cmp.utils.buffer.get -function/1/cmp.utils.buffer.ensure -boolean/nvim-tree.lib.respect_buf_cwd -function/5/nvim-tree.lib.prompt -boolean/nvim-tree.lib.select_prompts -function/0/nvim-tree.lib.reload_git -function/0/nvim-tree.lib.set_target_win -function/1/nvim-tree.lib.dir_up -function/2/nvim-tree.lib.change_dir -function/1/nvim-tree.lib.set_index_and_redraw -function/1/nvim-tree.lib.collapse_all -boolean/nvim-tree.lib.hijack_directories.auto_open -boolean/nvim-tree.lib.hijack_directories.enable -function/0/nvim-tree.lib.get_nodes -function/1/nvim-tree.lib.get_last_group_node -function/1/nvim-tree.lib.open -function/1/nvim-tree.lib.expand_or_collapse -function/0/nvim-tree.lib.get_node_at_cursor -function/1/nvim-tree.lib.setup -function/2/nvim-tree.lib.refresh_tree -boolean/nvim-tree.lib.hijack_unnamed_buffer_when_opening -boolean/nvim-tree.log.config.enable -boolean/nvim-tree.log.config.types.copy_paste -boolean/nvim-tree.log.config.types.config -boolean/nvim-tree.log.config.types.git -boolean/nvim-tree.log.config.types.diagnostics -boolean/nvim-tree.log.config.types.all -boolean/nvim-tree.log.config.types.dev -boolean/nvim-tree.log.config.types.profile -boolean/nvim-tree.log.config.types.watcher -boolean/nvim-tree.log.config.truncate -function/1/nvim-tree.log.setup -function/1/nvim-tree.log.enabled -function/1/nvim-tree.log.profile_start -function/2/nvim-tree.log.raw -function/2/nvim-tree.log.line -function/1/nvim-tree.log.profile_end -function/0/nvim-tree.colors.setup -function/2/nvim-tree.renderer.render_hl -function/1/nvim-tree.renderer.setup -function/1/nvim-tree.renderer.draw -function/0/nvim-tree.view.reposition_window -function/0/nvim-tree.view.abandon_current_window -function/1/nvim-tree.view.toggle_help -function/1/nvim-tree.view.get_winnr -function/0/nvim-tree.view.abandon_all_windows -function/0/nvim-tree.view.close_this_tab_only -function/0/nvim-tree.view.restore_tab_state -function/1/nvim-tree.view.is_root_folder_visible -string/nvim-tree.view.on_attach -function/1/nvim-tree.view.setup -function/1/nvim-tree.view.is_help_ui -function/0/nvim-tree.view.close -function/0/nvim-tree.view._prevent_buffer_override -function/1/nvim-tree.view.is_visible -function/1/nvim-tree.view.is_buf_valid -boolean/nvim-tree.view.View.centralize_selection -boolean/nvim-tree.view.View.tab.sync.open -boolean/nvim-tree.view.View.tab.sync.close -number/nvim-tree.view.View.width -boolean/nvim-tree.view.View.hide_root_folder -string/nvim-tree.view.View.side -boolean/nvim-tree.view.View.preserve_window_proportions -boolean/nvim-tree.view.View.float.quit_on_focus_loss -string/nvim-tree.view.View.float.open_win_config.relative -string/nvim-tree.view.View.float.open_win_config.border -number/nvim-tree.view.View.float.open_win_config.row -number/nvim-tree.view.View.float.open_win_config.height -number/nvim-tree.view.View.float.open_win_config.width -number/nvim-tree.view.View.float.open_win_config.col -boolean/nvim-tree.view.View.float.enable -number/nvim-tree.view.View.initial_width -boolean/nvim-tree.view.View.adaptive_size -boolean/nvim-tree.view.View.winopts.number -string/nvim-tree.view.View.winopts.winhl -string/nvim-tree.view.View.winopts.colorcolumn -boolean/nvim-tree.view.View.winopts.wrap -string/nvim-tree.view.View.winopts.cursorlineopt -boolean/nvim-tree.view.View.winopts.spell -boolean/nvim-tree.view.View.winopts.foldenable -boolean/nvim-tree.view.View.winopts.winfixwidth -boolean/nvim-tree.view.View.winopts.winfixheight -string/nvim-tree.view.View.winopts.foldmethod -boolean/nvim-tree.view.View.winopts.cursorline -boolean/nvim-tree.view.View.winopts.relativenumber -string/nvim-tree.view.View.winopts.signcolumn -boolean/nvim-tree.view.View.winopts.cursorcolumn -string/nvim-tree.view.View.winopts.foldcolumn -boolean/nvim-tree.view.View.winopts.list -function/0/nvim-tree.view.reset_winhl -function/1/nvim-tree.view.open_in_current_win -function/0/nvim-tree.view.get_bufnr -function/1/nvim-tree.view.resize -function/1/nvim-tree.view.open -function/0/nvim-tree.view.grow_from_content -function/1/nvim-tree.view.set_cursor -function/2/nvim-tree.view.focus -function/0/nvim-tree.view.close_all_tabs -function/3/nvim-tree.utils.debounce -function/2/nvim-tree.utils.str_find -function/2/nvim-tree.utils.table_create_missing -function/2/nvim-tree.utils.path_relative -function/7/nvim-tree.utils.move_missing_val -function/1/nvim-tree.utils.format_bytes -function/1/nvim-tree.utils.get_node_from_path -function/2/nvim-tree.utils.key_by -boolean/nvim-tree.utils.is_unix -boolean/nvim-tree.utils.is_macos -function/2/nvim-tree.utils.bool_record -boolean/nvim-tree.utils.is_wsl -boolean/nvim-tree.utils.is_windows -function/1/nvim-tree.utils.focus_file -function/1/nvim-tree.utils.canonical_path -function/1/nvim-tree.utils.get_win_buf_from_path -function/1/nvim-tree.utils.read_file -function/1/nvim-tree.utils.array_shallow_clone -function/2/nvim-tree.utils.array_remove -function/1/nvim-tree.utils.path_split -function/1/nvim-tree.utils.inject_node -function/1/nvim-tree.utils.path_basename -function/1/nvim-tree.utils.is_nvim_tree_buf -function/1/nvim-tree.utils.array_remove_nils -function/1/nvim-tree.utils.path_add_trailing -function/0/nvim-tree.utils.clear_prompt -function/2/nvim-tree.utils.find_node -function/1/nvim-tree.utils.path_join -function/1/nvim-tree.utils.get_parent_of_group -function/2/nvim-tree.utils.get_nodes_by_line -function/1/nvim-tree.utils.file_exists -function/1/nvim-tree.utils.path_remove_trailing -function/2/nvim-tree.utils.rename_loaded_buffers -string/nvim-tree.utils.path_separator -number/nvim-tree.actions.root.change-dir.current_tab -function/1/nvim-tree.actions.root.change-dir.setup -boolean/nvim-tree.actions.root.change-dir.options.global -boolean/nvim-tree.actions.root.change-dir.options.enable -boolean/nvim-tree.actions.root.change-dir.options.restrict_above_cwd -function/2/nvim-tree.actions.root.change-dir.force_dirchange -function/2/nvim-tree.actions.root.change-dir.fn -function/1/nvim-tree.legacy.migrate_legacy_options -function/0/jit.opt.start -function/1/luasnip.util.parser.neovim_parser.parse -function/2/luasnip.util.parser.neovim_parser.ast.text -function/2/luasnip.util.parser.neovim_parser.ast.choice -number/luasnip.util.parser.neovim_parser.ast.node_type.TABSTOP -number/luasnip.util.parser.neovim_parser.ast.node_type.PLACEHOLDER -number/luasnip.util.parser.neovim_parser.ast.node_type.VARIABLE -number/luasnip.util.parser.neovim_parser.ast.node_type.CHOICE -number/luasnip.util.parser.neovim_parser.ast.node_type.TRANSFORM -number/luasnip.util.parser.neovim_parser.ast.node_type.FORMAT -number/luasnip.util.parser.neovim_parser.ast.node_type.TEXT -number/luasnip.util.parser.neovim_parser.ast.node_type.SNIPPET -function/2/luasnip.util.parser.neovim_parser.ast.tabstop -function/3/luasnip.util.parser.neovim_parser.ast.transform -function/2/luasnip.util.parser.neovim_parser.ast.format -function/2/luasnip.util.parser.neovim_parser.ast.placeholder -function/2/luasnip.util.parser.neovim_parser.ast.variable -function/1/luasnip.util.parser.neovim_parser.ast.snippet -function/1/luasnip.util.parser.neovim_parser.ast.is_node -function/1/luasnip.util.parser.neovim_parser.ast.merge_adjacent_text -function/0/ffi.fill -function/0/ffi.abi -string/ffi.os -function/0/ffi.load -function/0/ffi.string -string/ffi.arch -function/0/ffi.metatype -function/0/ffi.copy -function/0/ffi.sizeof -function/0/ffi.errno -function/0/ffi.gc -userdata/ffi.C -function/0/ffi.cdef -function/0/ffi.cast -function/0/ffi.typeof -function/0/ffi.typeinfo -function/0/ffi.istype -function/0/ffi.alignof -function/0/ffi.offsetof -function/0/ffi.new -function/2/which-key.text.fix_nl -function/5/which-key.text.set -function/5/which-key.text.highlight -function/1/which-key.text.nl -function/1/which-key.text.len -function/1/which-key.text.new -number/which-key.config.namespace -function/1/which-key.config.setup -string/which-key.config.options.popup_mappings.scroll_down -string/which-key.config.options.popup_mappings.scroll_up -string/which-key.config.options.hidden.1 -string/which-key.config.options.hidden.2 -string/which-key.config.options.hidden.3 -string/which-key.config.options.hidden.4 -string/which-key.config.options.hidden.5 -string/which-key.config.options.hidden.6 -string/which-key.config.options.hidden.7 -string/which-key.config.options.hidden.8 -string/which-key.config.options.window.position -number/which-key.config.options.window.margin.1 -number/which-key.config.options.window.margin.2 -number/which-key.config.options.window.margin.3 -number/which-key.config.options.window.margin.4 -number/which-key.config.options.window.winblend -string/which-key.config.options.window.border -number/which-key.config.options.window.padding.1 -number/which-key.config.options.window.padding.2 -number/which-key.config.options.window.padding.3 -number/which-key.config.options.window.padding.4 -string/which-key.config.options.operators.d -string/which-key.config.options.operators.g~ -string/which-key.config.options.operators.! -string/which-key.config.options.operators.v -string/which-key.config.options.operators.gu -string/which-key.config.options.operators.c -string/which-key.config.options.operators.gU -string/which-key.config.options.operators. -string/which-key.config.options.operators.> -string/which-key.config.options.operators.gc -string/which-key.config.options.operators.y -string/which-key.config.options.operators.zf -string/which-key.config.options.layout.align -number/which-key.config.options.layout.height.max -number/which-key.config.options.layout.height.min -number/which-key.config.options.layout.width.max -number/which-key.config.options.layout.width.min -number/which-key.config.options.layout.spacing -boolean/which-key.config.options.motions.count -boolean/which-key.config.options.ignore_missing -string/which-key.config.options.icons.separator -string/which-key.config.options.icons.breadcrumb -string/which-key.config.options.icons.group -string/which-key.config.options.triggers_nowait.1 -string/which-key.config.options.triggers_nowait.2 -string/which-key.config.options.triggers_nowait.3 -string/which-key.config.options.triggers_nowait.4 -string/which-key.config.options.triggers_nowait.5 -string/which-key.config.options.triggers_nowait.6 -string/which-key.config.options.triggers_nowait.7 -string/which-key.config.options.triggers_nowait.8 -string/which-key.config.options.triggers_blacklist.v.1 -string/which-key.config.options.triggers_blacklist.v.2 -string/which-key.config.options.triggers_blacklist.i.1 -string/which-key.config.options.triggers_blacklist.i.2 -string/which-key.config.options.triggers -boolean/which-key.config.options.plugins.registers -boolean/which-key.config.options.plugins.presets.enabled -boolean/which-key.config.options.plugins.presets.g -boolean/which-key.config.options.plugins.presets.text_objects -boolean/which-key.config.options.plugins.presets.nav -boolean/which-key.config.options.plugins.presets.operators -boolean/which-key.config.options.plugins.presets.windows -boolean/which-key.config.options.plugins.presets.z -boolean/which-key.config.options.plugins.presets.motions -boolean/which-key.config.options.plugins.marks -number/which-key.config.options.plugins.spelling.suggestions -boolean/which-key.config.options.plugins.spelling.enabled -boolean/which-key.config.options.show_help -boolean/which-key.config.options.show_keys -function/4/luasnip.util.functions.var -function/1/luasnip.util.functions.copy -function/1/luasnip.util.functions.better_var -function/1/luasnip.util.functions.eval_vim_dynamic -string/which-key.plugins.presets.misc.name -function/2/which-key.plugins.presets.misc.setup -string/lspconfig.server_configurations.pylsp.docs.description -function/1/lspconfig.server_configurations.pylsp.default_config.root_dir -string/lspconfig.server_configurations.pylsp.default_config.cmd.1 -boolean/lspconfig.server_configurations.pylsp.default_config.single_file_support -string/lspconfig.server_configurations.pylsp.default_config.filetypes.1 -function/1/which-key.layout.trail -function/2/which-key.layout.layout -function/2/which-key.layout.max_width -function/3/which-key.layout.new -string/which-key.view.keys -function/0/which-key.view.getchar -function/0/which-key.view.back -function/0/which-key.view.hide -boolean/which-key.view.auto -string/which-key.view.reg -function/1/which-key.view.scroll -function/0/which-key.view.show -number/which-key.view.win -function/1/which-key.view.on_keys -function/1/which-key.view.is_enabled -function/0/which-key.view.is_valid -number/which-key.view.count -function/1/which-key.view.render -function/0/which-key.view.show_cursor -function/1/which-key.view.has_cmd -function/2/which-key.view.open -function/3/which-key.view.execute -function/0/which-key.view.read_pending -function/0/which-key.view.hide_cursor -string/which-key.view.mode -function/0/which-key.view.on_close -string/lspkind.presets.default.Property -string/lspkind.presets.default.Unit -string/lspkind.presets.default.Value -string/lspkind.presets.default.Enum -string/lspkind.presets.default.Color -string/lspkind.presets.default.Function -string/lspkind.presets.default.Reference -string/lspkind.presets.default.Folder -string/lspkind.presets.default.EnumMember -string/lspkind.presets.default.Struct -string/lspkind.presets.default.Operator -string/lspkind.presets.default.Keyword -string/lspkind.presets.default.TypeParameter -string/lspkind.presets.default.Event -string/lspkind.presets.default.Constant -string/lspkind.presets.default.File -string/lspkind.presets.default.Snippet -string/lspkind.presets.default.Text -string/lspkind.presets.default.Method -string/lspkind.presets.default.Constructor -string/lspkind.presets.default.Field -string/lspkind.presets.default.Variable -string/lspkind.presets.default.Class -string/lspkind.presets.default.Interface -string/lspkind.presets.default.Module -string/lspkind.presets.codicons.Property -string/lspkind.presets.codicons.Unit -string/lspkind.presets.codicons.Value -string/lspkind.presets.codicons.Enum -string/lspkind.presets.codicons.Color -string/lspkind.presets.codicons.Function -string/lspkind.presets.codicons.Reference -string/lspkind.presets.codicons.Folder -string/lspkind.presets.codicons.EnumMember -string/lspkind.presets.codicons.Struct -string/lspkind.presets.codicons.Operator -string/lspkind.presets.codicons.Keyword -string/lspkind.presets.codicons.TypeParameter -string/lspkind.presets.codicons.Event -string/lspkind.presets.codicons.Constant -string/lspkind.presets.codicons.File -string/lspkind.presets.codicons.Snippet -string/lspkind.presets.codicons.Text -string/lspkind.presets.codicons.Method -string/lspkind.presets.codicons.Constructor -string/lspkind.presets.codicons.Field -string/lspkind.presets.codicons.Variable -string/lspkind.presets.codicons.Class -string/lspkind.presets.codicons.Interface -string/lspkind.presets.codicons.Module -function/2/lspkind.symbolic -function/1/lspkind.cmp_format -function/1/lspkind.init -boolean/nvim-tree.marks.bulk-move.enable_reload -function/0/nvim-tree.marks.bulk-move.bulk_move -function/1/nvim-tree.marks.bulk-move.setup -function/0/which-key.colors.setup -function/3/cmp.utils.options.buf_set_option -function/3/cmp.utils.options.win_set_option -number/luasnip.session.snippet_collection.invalidated_count -function/1/luasnip.session.snippet_collection.get_id_snippet -function/1/luasnip.session.snippet_collection.clear_snippets -function/1/luasnip.session.snippet_collection.clean_invalidated -function/2/luasnip.session.snippet_collection.get_snippets -function/2/luasnip.session.snippet_collection.add_snippets -function/3/luasnip.session.snippet_collection.match_snippet -string/which-key.plugins.presets.objects.i) -string/which-key.plugins.presets.objects.i -string/which-key.plugins.presets.objects.i> -string/which-key.plugins.presets.objects.iB -string/which-key.plugins.presets.objects.a.name -string/which-key.plugins.presets.objects.iW -string/which-key.plugins.presets.objects.i[ -string/which-key.plugins.presets.objects.i] -string/which-key.plugins.presets.objects.i` -string/which-key.plugins.presets.objects.ib -string/which-key.plugins.presets.objects.ip -string/which-key.plugins.presets.objects.is -string/which-key.plugins.presets.objects.it -string/which-key.plugins.presets.objects.i{ -string/which-key.plugins.presets.objects.a" -string/which-key.plugins.presets.objects.a' -string/which-key.plugins.presets.objects.a( -string/which-key.plugins.presets.objects.at -string/which-key.plugins.presets.objects.a) -string/which-key.plugins.presets.objects.a -string/which-key.plugins.presets.objects.a> -string/which-key.plugins.presets.objects.aB -string/which-key.plugins.presets.objects.aW -string/which-key.plugins.presets.objects.a[ -string/which-key.plugins.presets.objects.a] -string/which-key.plugins.presets.objects.a` -string/which-key.plugins.presets.objects.ab -string/which-key.plugins.presets.objects.ap -string/which-key.plugins.presets.objects.aw -string/which-key.plugins.presets.objects.a{ -string/which-key.plugins.presets.objects.i} -string/which-key.plugins.presets.objects.a} -string/which-key.plugins.presets.objects.i" -string/which-key.plugins.presets.objects.iw -string/which-key.plugins.presets.objects.i' -string/which-key.plugins.presets.objects.i.name -string/which-key.plugins.presets.objects.i( -string/which-key.plugins.presets.objects.as -string/which-key.plugins.presets.name -string/which-key.plugins.presets.operators.d -string/which-key.plugins.presets.operators.g~ -string/which-key.plugins.presets.operators.v -string/which-key.plugins.presets.operators.gu -string/which-key.plugins.presets.operators.c -string/which-key.plugins.presets.operators.gU -string/which-key.plugins.presets.operators.! -string/which-key.plugins.presets.operators.> -string/which-key.plugins.presets.operators. -string/which-key.plugins.presets.operators.y -string/which-key.plugins.presets.operators.zf -function/3/which-key.plugins.presets.setup -string/which-key.plugins.presets.motions.^ -string/which-key.plugins.presets.motions.F -string/which-key.plugins.presets.motions.j -string/which-key.plugins.presets.motions.} -string/which-key.plugins.presets.motions.ge -string/which-key.plugins.presets.motions.b -string/which-key.plugins.presets.motions.k -string/which-key.plugins.presets.motions.l -string/which-key.plugins.presets.motions.gg -string/which-key.plugins.presets.motions.e -string/which-key.plugins.presets.motions.$ -string/which-key.plugins.presets.motions.% -string/which-key.plugins.presets.motions.{ -string/which-key.plugins.presets.motions.f -string/which-key.plugins.presets.motions.T -string/which-key.plugins.presets.motions.G -string/which-key.plugins.presets.motions.0 -string/which-key.plugins.presets.motions.h -string/which-key.plugins.presets.motions.w -string/which-key.plugins.presets.motions.t -function/3/which-key.mappings._parse -function/1/which-key.mappings.child_opts -function/2/which-key.mappings._process -function/3/which-key.mappings._try_parse -function/2/which-key.mappings.parse -function/1/which-key.mappings.to_mapping -function/0/nvim-tree.core.get_nodes_starting_line -function/0/nvim-tree.core.get_cwd -function/0/nvim-tree.core.get_explorer -function/1/nvim-tree.core.init -function/0/string.sub -function/0/string.rep -function/0/string.reverse -function/0/string.lower -function/0/string.upper -function/0/string.dump -function/0/string.find -function/0/string.match -function/0/string.gmatch -function/0/string.gsub -function/0/string.format -function/1/string.len -function/0/string.byte -function/0/string.char -function/2/which-key.plugins.invoke -string/which-key.plugins.plugins.registers.name -function/3/which-key.plugins.plugins.registers.setup -string/which-key.plugins.plugins.registers.actions.1.trigger -string/which-key.plugins.plugins.registers.actions.1.mode -string/which-key.plugins.plugins.registers.actions.2.trigger -string/which-key.plugins.plugins.registers.actions.2.mode -string/which-key.plugins.plugins.registers.actions.3.trigger -boolean/which-key.plugins.plugins.registers.actions.3.delay -string/which-key.plugins.plugins.registers.actions.3.mode -string/which-key.plugins.plugins.registers.actions.4.trigger -string/which-key.plugins.plugins.registers.actions.4.mode -string/which-key.plugins.plugins.registers.actions.5.trigger -string/which-key.plugins.plugins.registers.actions.5.mode -string/which-key.plugins.plugins.registers.registers -function/3/which-key.plugins.plugins.registers.run -function/3/which-key.plugins.plugins.marks.setup -string/which-key.plugins.plugins.marks.actions.1.trigger -string/which-key.plugins.plugins.marks.actions.1.mode -string/which-key.plugins.plugins.marks.actions.2.trigger -string/which-key.plugins.plugins.marks.actions.2.mode -string/which-key.plugins.plugins.marks.actions.3.trigger -string/which-key.plugins.plugins.marks.actions.3.mode -string/which-key.plugins.plugins.marks.actions.4.trigger -string/which-key.plugins.plugins.marks.actions.4.mode -string/which-key.plugins.plugins.marks.name -function/3/which-key.plugins.plugins.marks.run -function/0/which-key.plugins.setup -function/2/which-key.plugins._setup -number/nvim-tree.actions.tree-modifiers.expand-all.MAX_FOLDER_DISCOVERY -function/1/nvim-tree.actions.tree-modifiers.expand-all.setup -function/1/nvim-tree.actions.tree-modifiers.expand-all.fn -function/2/luasnip.loaders.util.ft_filter -function/1/luasnip.loaders.util.get_load_fts -function/3/luasnip.loaders.util.get_load_paths_snipmate_like -function/1/luasnip.loaders.util.edit_snippet_files -function/1/luasnip.loaders.util.filetypelist_to_set -function/1/luasnip.loaders.util.split_lines -function/2/luasnip.loaders.util.extend_ft_paths -function/1/luasnip.loaders.util.add_opts -function/2/luasnip.loaders.util.get_ft_paths -function/2/luasnip.loaders.util.normalize_paths -function/0/nvim-tree.actions.tree-modifiers.toggles.git_clean -function/0/nvim-tree.actions.tree-modifiers.toggles.no_buffer -function/0/nvim-tree.actions.tree-modifiers.toggles.custom -function/0/nvim-tree.actions.tree-modifiers.toggles.help -function/0/nvim-tree.actions.tree-modifiers.toggles.dotfiles -function/0/nvim-tree.actions.tree-modifiers.toggles.git_ignored -function/0/luasnip.util.directed_graph.new -function/3/luasnip.nodes.choiceNode.C -boolean/nvim-tree.actions.fs.copy-paste.enable_reload -function/1/nvim-tree.actions.fs.copy-paste.copy_absolute_path -function/1/nvim-tree.actions.fs.copy-paste.copy -boolean/nvim-tree.actions.fs.copy-paste.use_system_clipboard -function/0/nvim-tree.actions.fs.copy-paste.clear_clipboard -function/1/nvim-tree.actions.fs.copy-paste.setup -function/1/nvim-tree.actions.fs.copy-paste.cut -function/1/nvim-tree.actions.fs.copy-paste.paste -function/0/nvim-tree.actions.fs.copy-paste.print_clipboard -function/1/nvim-tree.actions.fs.copy-paste.copy_filename -function/1/nvim-tree.actions.fs.copy-paste.copy_path -function/3/luasnip.nodes.functionNode.F -function/1/luasnip.nodes.functionNode.FunctionNode.get_docstring -boolean/luasnip.nodes.functionNode.FunctionNode.merge_node_ext_opts -function/1/luasnip.nodes.functionNode.FunctionNode.is_interactive -boolean/luasnip.nodes.functionNode.FunctionNode.visible -function/2/luasnip.nodes.functionNode.FunctionNode.make_args_absolute -function/1/luasnip.nodes.functionNode.FunctionNode.get_static_text -boolean/luasnip.nodes.functionNode.FunctionNode.static_visible -function/2/luasnip.nodes.functionNode.FunctionNode.put_initial -function/1/luasnip.nodes.functionNode.FunctionNode.update_restore -function/2/luasnip.nodes.functionNode.FunctionNode.indent -function/3/luasnip.nodes.functionNode.FunctionNode.input_enter -function/1/luasnip.nodes.functionNode.FunctionNode.set_dependents -number/luasnip.nodes.functionNode.FunctionNode.node_ext_opts.base_prio -function/2/luasnip.nodes.functionNode.FunctionNode.expand_tabs -function/1/luasnip.nodes.functionNode.FunctionNode.update_static -function/1/luasnip.nodes.functionNode.FunctionNode.update -boolean/luasnip.nodes.functionNode.FunctionNode.visited -boolean/nvim-tree.actions.fs.create-file.enable_reload -function/1/nvim-tree.actions.fs.create-file.setup -function/1/nvim-tree.actions.fs.create-file.fn -boolean/nvim-tree.git.config.git.ignore -number/nvim-tree.git.config.git.timeout -boolean/nvim-tree.git.config.git.show_on_dirs -boolean/nvim-tree.git.config.git.show_on_open_dirs -boolean/nvim-tree.git.config.git.enable -boolean/nvim-tree.git.config.filesystem_watchers.enable -number/nvim-tree.git.config.filesystem_watchers.debounce_delay -function/1/nvim-tree.git.setup -function/1/nvim-tree.git.get_project_root -function/0/nvim-tree.git.purge_state -function/0/nvim-tree.git.disable_git_integration -function/2/nvim-tree.git.reload_project -function/0/nvim-tree.git.reload -function/1/nvim-tree.git.get_project -function/1/nvim-tree.git.load_project_status -function/1/nvim-tree.api.node.navigate.sibling.prev -function/1/nvim-tree.api.node.navigate.sibling.first -function/1/nvim-tree.api.node.navigate.sibling.next -function/1/nvim-tree.api.node.navigate.sibling.last -function/1/nvim-tree.api.node.navigate.parent_close -function/1/nvim-tree.api.node.navigate.git.next -function/1/nvim-tree.api.node.navigate.git.prev -function/1/nvim-tree.api.node.navigate.parent -function/1/nvim-tree.api.node.navigate.diagnostics.next -function/1/nvim-tree.api.node.navigate.diagnostics.prev -function/1/nvim-tree.api.node.show_info_popup -function/1/nvim-tree.api.node.open.edit -function/1/nvim-tree.api.node.open.replace_tree_buffer -function/1/nvim-tree.api.node.open.no_window_picker -function/1/nvim-tree.api.node.open.preview -function/1/nvim-tree.api.node.open.vertical -function/1/nvim-tree.api.node.open.horizontal -function/1/nvim-tree.api.node.open.tab -function/1/nvim-tree.api.node.run.system -function/1/nvim-tree.api.node.run.cmd -function/0/nvim-tree.api.config.mappings.default -function/0/nvim-tree.api.config.mappings.active -function/0/nvim-tree.api.marks.list -function/0/nvim-tree.api.marks.bulk.move -function/0/nvim-tree.api.marks.clear -function/1/nvim-tree.api.marks.get -function/1/nvim-tree.api.marks.toggle -function/0/nvim-tree.api.marks.navigate.select -function/0/nvim-tree.api.marks.navigate.next -function/0/nvim-tree.api.marks.navigate.prev -function/1/nvim-tree.api.fs.create -function/1/nvim-tree.api.fs.copy.node -function/1/nvim-tree.api.fs.copy.absolute_path -function/1/nvim-tree.api.fs.copy.relative_path -function/1/nvim-tree.api.fs.copy.filename -function/1/nvim-tree.api.fs.rename -function/0/nvim-tree.api.fs.print_clipboard -function/1/nvim-tree.api.fs.rename_basename -function/0/nvim-tree.api.fs.clear_clipboard -function/1/nvim-tree.api.fs.cut -function/1/nvim-tree.api.fs.remove -function/1/nvim-tree.api.fs.paste -function/1/nvim-tree.api.fs.trash -function/1/nvim-tree.api.fs.rename_node -function/1/nvim-tree.api.fs.rename_sub -function/0/nvim-tree.api.git.reload -string/nvim-tree.api.events.Event.FolderRemoved -string/nvim-tree.api.events.Event.Resize -string/nvim-tree.api.events.Event.TreeAttachedPost -string/nvim-tree.api.events.Event.Ready -string/nvim-tree.api.events.Event.WillRenameNode -string/nvim-tree.api.events.Event.NodeRenamed -string/nvim-tree.api.events.Event.TreeOpen -string/nvim-tree.api.events.Event.TreeClose -string/nvim-tree.api.events.Event.FileCreated -string/nvim-tree.api.events.Event.FileRemoved -string/nvim-tree.api.events.Event.FolderCreated -function/2/nvim-tree.api.events.subscribe -function/1/nvim-tree.api.tree.change_root_to_node -function/0/nvim-tree.api.tree.toggle_help -function/1/nvim-tree.api.tree.expand_all -function/0/nvim-tree.api.tree.close -function/1/nvim-tree.api.tree.open -function/0/nvim-tree.api.tree.toggle_no_buffer_filter -function/4/nvim-tree.api.tree.toggle -function/0/nvim-tree.api.tree.toggle_gitignore_filter -function/1/nvim-tree.api.tree.collapse_all -function/1/nvim-tree.api.tree.change_root -function/1/nvim-tree.api.tree.find_file -function/0/nvim-tree.api.tree.get_nodes -function/0/nvim-tree.api.tree.close_in_this_tab -function/0/nvim-tree.api.tree.close_in_all_tabs -function/0/nvim-tree.api.tree.get_node_under_cursor -function/0/nvim-tree.api.tree.toggle_git_clean_filter -function/0/nvim-tree.api.tree.search_node -function/0/nvim-tree.api.tree.toggle_hidden_filter -function/0/nvim-tree.api.tree.toggle_custom_filter -function/2/nvim-tree.api.tree.reload -function/0/nvim-tree.api.tree.focus -function/1/nvim-tree.api.tree.change_root_to_parent -function/0/nvim-tree.api.live_filter.clear -function/0/nvim-tree.api.live_filter.start -string/nvim-tree.actions.fs.trash.config.trash.cmd -boolean/nvim-tree.actions.fs.trash.config.ui.confirm.trash -boolean/nvim-tree.actions.fs.trash.config.ui.confirm.remove -boolean/nvim-tree.actions.fs.trash.enable_reload -function/1/nvim-tree.actions.fs.trash.setup -function/1/nvim-tree.actions.fs.trash.fn -function/1/nvim-tree.actions.fs.remove-file.setup -boolean/nvim-tree.actions.fs.remove-file.close_window -boolean/nvim-tree.actions.fs.remove-file.enable_reload -function/1/nvim-tree.actions.fs.remove-file.fn -function/1/nvim-tree.modified.setup -function/0/nvim-tree.modified.reload -function/1/nvim-tree.modified.is_modified -function/0/cmp.mapping.close -function/1/cmp.mapping.select_next_item -function/1/cmp.mapping.select_prev_item -function/1/cmp.mapping.complete -function/1/cmp.mapping.scroll_docs -function/1/cmp.mapping.preset.insert -function/1/cmp.mapping.preset.cmdline -function/0/cmp.mapping.complete_common_string -function/0/cmp.mapping.abort -function/1/cmp.mapping.confirm -function/1/cmp.setup.global -function/2/cmp.setup.filetype -function/2/cmp.setup.cmdline -function/1/cmp.setup.buffer -function/0/cmp.suspend -function/2/cmp.register_source -function/1/cmp.unregister_source -function/0/cmp.complete -boolean/cmp.vim -boolean/cmp.core.suspending -boolean/cmp.core.sources.1.incomplete -string/cmp.core.sources.1.name -string/cmp.core.sources.1.context.cursor_line -number/cmp.core.sources.1.context.id -string/cmp.core.sources.1.context.filetype -number/cmp.core.sources.1.context.time -number/cmp.core.sources.1.context.bufnr -string/cmp.core.sources.1.context.cursor_after_line -string/cmp.core.sources.1.context.input -string/cmp.core.sources.1.context.cursor_before_line -number/cmp.core.sources.1.context.cursor.row -number/cmp.core.sources.1.context.cursor.col -number/cmp.core.sources.1.id -function/1/cmp.core.sources.1.complete_dedup -number/cmp.core.sources.1.revision -number/cmp.core.sources.1.request_offset -number/cmp.core.sources.1.status -number/cmp.core.sources.1.offset -boolean/cmp.core.sources.1.is_triggered_by_symbol -boolean/cmp.core.sources.2.incomplete -string/cmp.core.sources.2.name -string/cmp.core.sources.2.context.cursor_line -number/cmp.core.sources.2.context.id -string/cmp.core.sources.2.context.filetype -number/cmp.core.sources.2.context.time -number/cmp.core.sources.2.context.bufnr -string/cmp.core.sources.2.context.cursor_after_line -string/cmp.core.sources.2.context.input -string/cmp.core.sources.2.context.cursor_before_line -number/cmp.core.sources.2.context.cursor.row -number/cmp.core.sources.2.context.cursor.col -number/cmp.core.sources.2.id -function/1/cmp.core.sources.2.complete_dedup -number/cmp.core.sources.2.revision -string/cmp.core.sources.2.source.client.config.cmd_cwd -function/2/cmp.core.sources.2.source.client.config.on_init -boolean/cmp.core.sources.2.source.client.config.capabilities.window.workDoneProgress -boolean/cmp.core.sources.2.source.client.config.capabilities.window.showMessage.messageActionItem.additionalPropertiesSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.window.showDocument.support -boolean/cmp.core.sources.2.source.client.config.capabilities.workspace.applyEdit -string/cmp.core.sources.2.source.client.config.capabilities.workspace.workspaceEdit.resourceOperations.1 -string/cmp.core.sources.2.source.client.config.capabilities.workspace.workspaceEdit.resourceOperations.2 -string/cmp.core.sources.2.source.client.config.capabilities.workspace.workspaceEdit.resourceOperations.3 -boolean/cmp.core.sources.2.source.client.config.capabilities.workspace.workspaceFolders -boolean/cmp.core.sources.2.source.client.config.capabilities.workspace.configuration -boolean/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.hierarchicalWorkspaceSymbolSupport -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.1 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.2 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.3 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.4 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.5 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.6 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.7 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.8 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.9 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.10 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.11 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.12 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.13 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.14 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.15 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.16 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.17 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.18 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.19 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.20 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.21 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.22 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.23 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.24 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.25 -number/cmp.core.sources.2.source.client.config.capabilities.workspace.symbol.symbolKind.valueSet.26 -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.implementation.linkSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.references.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.rename.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.rename.prepareSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentHighlight.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.hierarchicalDocumentSymbolSupport -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.1 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.2 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.3 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.4 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.5 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.6 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.7 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.8 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.9 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.10 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.11 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.12 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.13 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.14 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.15 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.16 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.17 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.18 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.19 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.20 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.21 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.22 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.23 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.24 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.25 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.documentSymbol.symbolKind.valueSet.26 -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.synchronization.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.synchronization.willSave -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.synchronization.willSaveWaitUntil -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.synchronization.didSave -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.isPreferredSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.dataSupport -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.resolveSupport.properties.1 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.1 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.2 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.3 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.4 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.5 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.6 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.7 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.8 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.9 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.10 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.11 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.12 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.13 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.14 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.15 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.codeAction.codeActionLiteralSupport.codeActionKind.valueSet.16 -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.typeDefinition.linkSupport -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.publishDiagnostics.tagSupport.valueSet.1 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.publishDiagnostics.tagSupport.valueSet.2 -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.publishDiagnostics.relatedInformation -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.hover.dynamicRegistration -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.hover.contentFormat.1 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.hover.contentFormat.2 -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.declaration.linkSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItem.preselectSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItem.deprecatedSupport -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItem.documentationFormat.1 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItem.documentationFormat.2 -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItem.snippetSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItem.commitCharactersSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.contextSupport -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.1 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.2 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.3 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.4 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.5 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.6 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.7 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.8 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.9 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.10 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.11 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.12 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.13 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.14 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.15 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.16 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.17 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.18 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.19 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.20 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.21 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.22 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.23 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.24 -number/cmp.core.sources.2.source.client.config.capabilities.textDocument.completion.completionItemKind.valueSet.25 -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.definition.linkSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.signatureHelp.dynamicRegistration -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.signatureHelp.signatureInformation.activeParameterSupport -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.signatureHelp.signatureInformation.documentationFormat.1 -string/cmp.core.sources.2.source.client.config.capabilities.textDocument.signatureHelp.signatureInformation.documentationFormat.2 -boolean/cmp.core.sources.2.source.client.config.capabilities.textDocument.signatureHelp.signatureInformation.parameterInformation.labelOffsetSupport -boolean/cmp.core.sources.2.source.client.config.capabilities.callHierarchy.dynamicRegistration -function/0/cmp.core.sources.2.source.client.config.on_attach -string/cmp.core.sources.2.source.client.config.root_dir -function/2/cmp.core.sources.2.source.client.config._on_attach -string/cmp.core.sources.2.source.client.config.name -function/2/cmp.core.sources.2.source.client.config.get_language_id -string/cmp.core.sources.2.source.client.config.workspace_folders.1.uri -string/cmp.core.sources.2.source.client.config.workspace_folders.1.name -function/0/cmp.core.sources.2.source.client.config.on_exit -boolean/cmp.core.sources.2.source.client.config.autostart -string/cmp.core.sources.2.source.client.config.cmd.1 -boolean/cmp.core.sources.2.source.client.config.single_file_support -string/cmp.core.sources.2.source.client.config.filetypes.1 -number/cmp.core.sources.2.source.client.config.log_level -number/cmp.core.sources.2.source.client.config.message_level -function/1/cmp.core.sources.2.source.client.stop -boolean/cmp.core.sources.2.source.client.attached_buffers.1 -string/cmp.core.sources.2.source.client.offset_encoding -string/cmp.core.sources.2.source.client.messages.name -function/1/cmp.core.sources.2.source.client.supports_method -function/4/cmp.core.sources.2.source.client.request -function/2/cmp.core.sources.2.source.client.notify -string/cmp.core.sources.2.source.client.name -function/4/cmp.core.sources.2.source.client.request_sync -number/cmp.core.sources.2.source.client.id -function/1/cmp.core.sources.2.source.client.workspace_did_change_configuration -boolean/cmp.core.sources.2.source.client.server_capabilities.referencesProvider -boolean/cmp.core.sources.2.source.client.server_capabilities.renameProvider.prepareProvider -boolean/cmp.core.sources.2.source.client.server_capabilities.documentLinkProvider.resolveProvider -boolean/cmp.core.sources.2.source.client.server_capabilities.documentFormattingProvider -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.1 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.2 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.3 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.4 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.5 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.6 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.7 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.8 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenModifiers.9 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.1 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.2 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.3 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.4 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.5 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.6 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.7 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.8 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.9 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.10 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.11 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.12 -string/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.legend.tokenTypes.13 -boolean/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.range -boolean/cmp.core.sources.2.source.client.server_capabilities.semanticTokensProvider.full.delta -string/cmp.core.sources.2.source.client.server_capabilities.completionProvider.triggerCharacters.1 -string/cmp.core.sources.2.source.client.server_capabilities.completionProvider.triggerCharacters.2 -boolean/cmp.core.sources.2.source.client.server_capabilities.documentHighlightProvider -boolean/cmp.core.sources.2.source.client.server_capabilities.hoverProvider -number/cmp.core.sources.2.source.client.server_capabilities.textDocumentSync.change -boolean/cmp.core.sources.2.source.client.server_capabilities.textDocumentSync.openClose -boolean/cmp.core.sources.2.source.client.server_capabilities.selectionRangeProvider -boolean/cmp.core.sources.2.source.client.server_capabilities.codeActionProvider -boolean/cmp.core.sources.2.source.client.server_capabilities.definitionProvider -boolean/cmp.core.sources.2.source.client.server_capabilities.documentSymbolProvider -function/1/cmp.core.sources.2.source.client._on_attach -function/1/cmp.core.sources.2.source.client.cancel_request -function/0/cmp.core.sources.2.source.client.is_stopped -boolean/cmp.core.sources.2.source.client.initialized -function/0/cmp.core.sources.2.source.client.rpc.is_closing -function/2/cmp.core.sources.2.source.client.rpc.notify -function/4/cmp.core.sources.2.source.client.rpc.request -function/0/cmp.core.sources.2.source.client.rpc.terminate -number/cmp.core.sources.2.request_offset -number/cmp.core.sources.2.status -number/cmp.core.sources.2.offset -boolean/cmp.core.sources.2.is_triggered_by_symbol -string/cmp.core.context.cursor_line -number/cmp.core.context.id -string/cmp.core.context.filetype -number/cmp.core.context.time -number/cmp.core.context.bufnr -string/cmp.core.context.cursor_after_line -string/cmp.core.context.input -string/cmp.core.context.cursor_before_line -number/cmp.core.context.cursor.row -number/cmp.core.context.cursor.col -function/1/cmp.core.view.resolve_dedup -function/1/cmp.core.view.event.events.menu_opened.1 -function/0/cmp.core.view.event.events.keymap.1 -function/1/cmp.core.view.event.events.menu_closed.1 -function/1/cmp.core.view.event.events.complete_done.1 -number/cmp.core.view.wildmenu_entries_view.entries_win.buffer_opt.tabstop -number/cmp.core.view.wildmenu_entries_view.entries_win.name -string/cmp.core.view.wildmenu_entries_view.entries_win.opt.winhighlight -boolean/cmp.core.view.wildmenu_entries_view.entries_win.opt.wrap -number/cmp.core.view.wildmenu_entries_view.entries_win.opt.conceallevel -string/cmp.core.view.wildmenu_entries_view.entries_win.opt.concealcursor -number/cmp.core.view.wildmenu_entries_view.entries_win.opt.scrolloff -number/cmp.core.view.wildmenu_entries_view.entries_win.opt.sidescrolloff -boolean/cmp.core.view.wildmenu_entries_view.entries_win.opt.foldenable -string/cmp.core.view.wildmenu_entries_view.entries_win.opt.cursorlineopt -number/cmp.core.view.wildmenu_entries_view.selected_index -number/cmp.core.view.wildmenu_entries_view.offset -boolean/cmp.core.view.wildmenu_entries_view.active -string/cmp.core.view.docs_view.window.buffer_opt.filetype -number/cmp.core.view.docs_view.window.name -number/cmp.core.view.docs_view.window.style.zindex -string/cmp.core.view.docs_view.window.style.border.1.1 -string/cmp.core.view.docs_view.window.style.border.1.2 -string/cmp.core.view.docs_view.window.style.border.2.1 -string/cmp.core.view.docs_view.window.style.border.2.2 -string/cmp.core.view.docs_view.window.style.border.3.1 -string/cmp.core.view.docs_view.window.style.border.3.2 -string/cmp.core.view.docs_view.window.style.border.4.1 -string/cmp.core.view.docs_view.window.style.border.4.2 -string/cmp.core.view.docs_view.window.style.border.5.1 -string/cmp.core.view.docs_view.window.style.border.5.2 -string/cmp.core.view.docs_view.window.style.border.6.1 -string/cmp.core.view.docs_view.window.style.border.6.2 -string/cmp.core.view.docs_view.window.style.border.7.1 -string/cmp.core.view.docs_view.window.style.border.7.2 -string/cmp.core.view.docs_view.window.style.border.8.1 -string/cmp.core.view.docs_view.window.style.border.8.2 -string/cmp.core.view.docs_view.window.style.relative -number/cmp.core.view.docs_view.window.style.row -string/cmp.core.view.docs_view.window.style.style -number/cmp.core.view.docs_view.window.style.height -number/cmp.core.view.docs_view.window.style.width -number/cmp.core.view.docs_view.window.style.col -number/cmp.core.view.docs_view.window.opt.conceallevel -boolean/cmp.core.view.docs_view.window.opt.wrap -number/cmp.core.view.docs_view.window.opt.winblend -string/cmp.core.view.docs_view.window.opt.showbreak -boolean/cmp.core.view.docs_view.window.opt.foldenable -string/cmp.core.view.docs_view.window.opt.winhighlight -number/cmp.core.view.docs_view.window.opt.scrolloff -boolean/cmp.core.view.docs_view.window.opt.linebreak -string/cmp.core.view.docs_view.window.opt.concealcursor -number/cmp.core.view.native_entries_view.preselect_index -number/cmp.core.view.native_entries_view.offset -number/cmp.core.view.custom_entries_view.offset -boolean/cmp.core.view.custom_entries_view.bottom_up -string/cmp.core.view.custom_entries_view.entries_win.buffer_opt.filetype -number/cmp.core.view.custom_entries_view.entries_win.buffer_opt.tabstop -number/cmp.core.view.custom_entries_view.entries_win.name -number/cmp.core.view.custom_entries_view.entries_win.style.zindex -string/cmp.core.view.custom_entries_view.entries_win.style.border.1.1 -string/cmp.core.view.custom_entries_view.entries_win.style.border.1.2 -string/cmp.core.view.custom_entries_view.entries_win.style.border.2.1 -string/cmp.core.view.custom_entries_view.entries_win.style.border.2.2 -string/cmp.core.view.custom_entries_view.entries_win.style.border.3.1 -string/cmp.core.view.custom_entries_view.entries_win.style.border.3.2 -string/cmp.core.view.custom_entries_view.entries_win.style.border.4.1 -string/cmp.core.view.custom_entries_view.entries_win.style.border.4.2 -string/cmp.core.view.custom_entries_view.entries_win.style.border.5.1 -string/cmp.core.view.custom_entries_view.entries_win.style.border.5.2 -string/cmp.core.view.custom_entries_view.entries_win.style.border.6.1 -string/cmp.core.view.custom_entries_view.entries_win.style.border.6.2 -string/cmp.core.view.custom_entries_view.entries_win.style.border.7.1 -string/cmp.core.view.custom_entries_view.entries_win.style.border.7.2 -string/cmp.core.view.custom_entries_view.entries_win.style.border.8.1 -string/cmp.core.view.custom_entries_view.entries_win.style.border.8.2 -string/cmp.core.view.custom_entries_view.entries_win.style.relative -number/cmp.core.view.custom_entries_view.entries_win.style.width -string/cmp.core.view.custom_entries_view.entries_win.style.style -number/cmp.core.view.custom_entries_view.entries_win.style.height -number/cmp.core.view.custom_entries_view.entries_win.style.row -number/cmp.core.view.custom_entries_view.entries_win.style.col -number/cmp.core.view.custom_entries_view.entries_win.opt.conceallevel -number/cmp.core.view.custom_entries_view.entries_win.opt.scrolloff -number/cmp.core.view.custom_entries_view.entries_win.opt.winblend -boolean/cmp.core.view.custom_entries_view.entries_win.opt.cursorline -boolean/cmp.core.view.custom_entries_view.entries_win.opt.foldenable -string/cmp.core.view.custom_entries_view.entries_win.opt.cursorlineopt -string/cmp.core.view.custom_entries_view.entries_win.opt.winhighlight -boolean/cmp.core.view.custom_entries_view.entries_win.opt.wrap -string/cmp.core.view.custom_entries_view.entries_win.opt.concealcursor -number/cmp.core.view.custom_entries_view.column_width.menu -number/cmp.core.view.custom_entries_view.column_width.kind -number/cmp.core.view.custom_entries_view.column_width.abbr -function/0/cmp.core.view.custom_entries_view.event.events.change.1 -boolean/cmp.core.view.custom_entries_view.active -function/1/cmp.core.event.events.confirm_done.1 -function/1/cmp.core.event.events.confirm_done.2 -function/1/cmp.core.event.events.complete_done.1 -function/0/cmp.complete_common_string -function/0/cmp.status -function/0/cmp.get_active_entry -function/0/cmp.get_entries -function/0/cmp.close -function/0/cmp.confirm -function/0/cmp.scroll_docs -function/0/cmp.select_prev_item -function/0/cmp.select_next_item -function/0/cmp.get_config -function/0/cmp.abort -function/0/cmp.get_selected_entry -function/0/cmp.visible -function/2/cmp.config.compare.score -function/2/cmp.config.compare.exact -function/2/cmp.config.compare.recently_used.add_entry -function/2/cmp.config.compare.offset -function/2/cmp.config.compare.sort_text -function/1/cmp.config.compare.scopes.update -function/2/cmp.config.compare.length -function/2/cmp.config.compare.order -number/cmp.config.compare.locality.lines_cache.entries.buf -function/1/cmp.config.compare.locality.update -number/cmp.config.compare.locality.lines_count -function/2/cmp.config.compare.kind -userdata/cmp.config.disable -function/1/cmp.config.window.bordered -function/0/cmp.config.sources -function/1/cmp.sync -function/3/luasnip.util.mark.mark -function/1/nvim-tree.actions.moves.parent.fn -function/1/luasnip.util.pattern_tokenizer.tokenize -function/3/luasnip.util.str.unescaped_pairs -function/1/luasnip.util.str.vscode_string_modifiers.capitalize -function/1/luasnip.util.str.vscode_string_modifiers.camelcase -function/1/luasnip.util.str.vscode_string_modifiers.pascalcase -function/0/luasnip.util.str.vscode_string_modifiers.upcase -function/0/luasnip.util.str.vscode_string_modifiers.downcase -function/1/luasnip.util.str.aupatescape -function/2/luasnip.util.str.process_multiline -function/1/luasnip.util.str.sanitize -function/1/luasnip.util.str.dedent -function/1/luasnip.util.dict.new -function/1/nvim-tree.actions.apply_mappings -function/0/nvim-tree.actions.default_mappings_clone -function/0/nvim-tree.actions.active_mappings_clone -string/nvim-tree.actions.mappings.1.desc -string/nvim-tree.actions.mappings.1.key.1 -string/nvim-tree.actions.mappings.1.key.2 -string/nvim-tree.actions.mappings.1.key.3 -string/nvim-tree.actions.mappings.1.action -string/nvim-tree.actions.mappings.2.desc -string/nvim-tree.actions.mappings.2.key -string/nvim-tree.actions.mappings.2.action -string/nvim-tree.actions.mappings.3.desc -string/nvim-tree.actions.mappings.3.key -string/nvim-tree.actions.mappings.3.action -string/nvim-tree.actions.mappings.4.desc -string/nvim-tree.actions.mappings.4.key.1 -string/nvim-tree.actions.mappings.4.key.2 -string/nvim-tree.actions.mappings.4.action -string/nvim-tree.actions.mappings.5.desc -string/nvim-tree.actions.mappings.5.key -string/nvim-tree.actions.mappings.5.action -string/nvim-tree.actions.mappings.6.desc -string/nvim-tree.actions.mappings.6.key -string/nvim-tree.actions.mappings.6.action -string/nvim-tree.actions.mappings.7.desc -string/nvim-tree.actions.mappings.7.key -string/nvim-tree.actions.mappings.7.action -string/nvim-tree.actions.mappings.8.desc -string/nvim-tree.actions.mappings.8.key -string/nvim-tree.actions.mappings.8.action -string/nvim-tree.actions.mappings.9.desc -string/nvim-tree.actions.mappings.9.key -string/nvim-tree.actions.mappings.9.action -string/nvim-tree.actions.mappings.10.desc -string/nvim-tree.actions.mappings.10.key -string/nvim-tree.actions.mappings.10.action -string/nvim-tree.actions.mappings.11.desc -string/nvim-tree.actions.mappings.11.key -string/nvim-tree.actions.mappings.11.action -string/nvim-tree.actions.mappings.12.desc -string/nvim-tree.actions.mappings.12.key -string/nvim-tree.actions.mappings.12.action -string/nvim-tree.actions.mappings.13.desc -string/nvim-tree.actions.mappings.13.key -string/nvim-tree.actions.mappings.13.action -string/nvim-tree.actions.mappings.14.desc -string/nvim-tree.actions.mappings.14.key -string/nvim-tree.actions.mappings.14.action -string/nvim-tree.actions.mappings.15.desc -string/nvim-tree.actions.mappings.15.key -string/nvim-tree.actions.mappings.15.action -string/nvim-tree.actions.mappings.16.desc -string/nvim-tree.actions.mappings.16.key -string/nvim-tree.actions.mappings.16.action -string/nvim-tree.actions.mappings.17.desc -string/nvim-tree.actions.mappings.17.key -string/nvim-tree.actions.mappings.17.action -string/nvim-tree.actions.mappings.18.desc -string/nvim-tree.actions.mappings.18.key -string/nvim-tree.actions.mappings.18.action -string/nvim-tree.actions.mappings.19.desc -string/nvim-tree.actions.mappings.19.key -string/nvim-tree.actions.mappings.19.action -string/nvim-tree.actions.mappings.20.desc -string/nvim-tree.actions.mappings.20.key -string/nvim-tree.actions.mappings.20.action -string/nvim-tree.actions.mappings.21.desc -string/nvim-tree.actions.mappings.21.key -string/nvim-tree.actions.mappings.21.action -string/nvim-tree.actions.mappings.22.desc -string/nvim-tree.actions.mappings.22.key -string/nvim-tree.actions.mappings.22.action -string/nvim-tree.actions.mappings.23.desc -string/nvim-tree.actions.mappings.23.key -string/nvim-tree.actions.mappings.23.action -string/nvim-tree.actions.mappings.24.desc -string/nvim-tree.actions.mappings.24.key -string/nvim-tree.actions.mappings.24.action -string/nvim-tree.actions.mappings.25.desc -string/nvim-tree.actions.mappings.25.key -string/nvim-tree.actions.mappings.25.action -string/nvim-tree.actions.mappings.26.desc -string/nvim-tree.actions.mappings.26.key -string/nvim-tree.actions.mappings.26.action -string/nvim-tree.actions.mappings.27.desc -string/nvim-tree.actions.mappings.27.key -string/nvim-tree.actions.mappings.27.action -string/nvim-tree.actions.mappings.28.desc -string/nvim-tree.actions.mappings.28.key -string/nvim-tree.actions.mappings.28.action -string/nvim-tree.actions.mappings.29.desc -string/nvim-tree.actions.mappings.29.key -string/nvim-tree.actions.mappings.29.action -string/nvim-tree.actions.mappings.30.desc -string/nvim-tree.actions.mappings.30.key -string/nvim-tree.actions.mappings.30.action -string/nvim-tree.actions.mappings.31.desc -string/nvim-tree.actions.mappings.31.key -string/nvim-tree.actions.mappings.31.action -string/nvim-tree.actions.mappings.32.desc -string/nvim-tree.actions.mappings.32.key -string/nvim-tree.actions.mappings.32.action -string/nvim-tree.actions.mappings.33.desc -string/nvim-tree.actions.mappings.33.key -string/nvim-tree.actions.mappings.33.action -string/nvim-tree.actions.mappings.34.desc -string/nvim-tree.actions.mappings.34.key -string/nvim-tree.actions.mappings.34.action -string/nvim-tree.actions.mappings.35.desc -string/nvim-tree.actions.mappings.35.key -string/nvim-tree.actions.mappings.35.action -string/nvim-tree.actions.mappings.36.desc -string/nvim-tree.actions.mappings.36.key -string/nvim-tree.actions.mappings.36.action -string/nvim-tree.actions.mappings.37.desc -string/nvim-tree.actions.mappings.37.key -string/nvim-tree.actions.mappings.37.action -string/nvim-tree.actions.mappings.38.desc -string/nvim-tree.actions.mappings.38.key -string/nvim-tree.actions.mappings.38.action -string/nvim-tree.actions.mappings.39.desc -string/nvim-tree.actions.mappings.39.key -string/nvim-tree.actions.mappings.39.action -string/nvim-tree.actions.mappings.40.desc -string/nvim-tree.actions.mappings.40.key -string/nvim-tree.actions.mappings.40.action -string/nvim-tree.actions.mappings.41.desc -string/nvim-tree.actions.mappings.41.key -string/nvim-tree.actions.mappings.41.action -string/nvim-tree.actions.mappings.42.desc -string/nvim-tree.actions.mappings.42.key -string/nvim-tree.actions.mappings.42.action -string/nvim-tree.actions.mappings.43.desc -string/nvim-tree.actions.mappings.43.key -string/nvim-tree.actions.mappings.43.action -string/nvim-tree.actions.mappings.44.desc -string/nvim-tree.actions.mappings.44.key -string/nvim-tree.actions.mappings.44.action -string/nvim-tree.actions.mappings.45.desc -string/nvim-tree.actions.mappings.45.key -string/nvim-tree.actions.mappings.45.action -string/nvim-tree.actions.mappings.46.desc -string/nvim-tree.actions.mappings.46.key -string/nvim-tree.actions.mappings.46.action -string/nvim-tree.actions.mappings.47.desc -string/nvim-tree.actions.mappings.47.key -string/nvim-tree.actions.mappings.47.action -string/nvim-tree.actions.mappings.48.desc -string/nvim-tree.actions.mappings.48.key -string/nvim-tree.actions.mappings.48.action -string/nvim-tree.actions.mappings.49.desc -string/nvim-tree.actions.mappings.49.key -string/nvim-tree.actions.mappings.49.action -function/1/nvim-tree.actions.setup -function/1/nvim-tree.keymap.set_keymaps -function/1/nvim-tree.keymap.keymaps.1.callback -string/nvim-tree.keymap.keymaps.1.desc -string/nvim-tree.keymap.keymaps.1.key.1 -string/nvim-tree.keymap.keymaps.1.key.2 -string/nvim-tree.keymap.keymaps.1.key.3 -function/1/nvim-tree.keymap.keymaps.2.callback -string/nvim-tree.keymap.keymaps.2.desc -string/nvim-tree.keymap.keymaps.2.key -function/1/nvim-tree.keymap.keymaps.3.callback -string/nvim-tree.keymap.keymaps.3.desc -string/nvim-tree.keymap.keymaps.3.key -function/1/nvim-tree.keymap.keymaps.4.callback -string/nvim-tree.keymap.keymaps.4.desc -string/nvim-tree.keymap.keymaps.4.key.1 -string/nvim-tree.keymap.keymaps.4.key.2 -function/1/nvim-tree.keymap.keymaps.5.callback -string/nvim-tree.keymap.keymaps.5.desc -string/nvim-tree.keymap.keymaps.5.key -function/1/nvim-tree.keymap.keymaps.6.callback -string/nvim-tree.keymap.keymaps.6.desc -string/nvim-tree.keymap.keymaps.6.key -function/1/nvim-tree.keymap.keymaps.7.callback -string/nvim-tree.keymap.keymaps.7.desc -string/nvim-tree.keymap.keymaps.7.key -function/1/nvim-tree.keymap.keymaps.8.callback -string/nvim-tree.keymap.keymaps.8.desc -string/nvim-tree.keymap.keymaps.8.key -function/1/nvim-tree.keymap.keymaps.9.callback -string/nvim-tree.keymap.keymaps.9.desc -string/nvim-tree.keymap.keymaps.9.key -function/1/nvim-tree.keymap.keymaps.10.callback -string/nvim-tree.keymap.keymaps.10.desc -string/nvim-tree.keymap.keymaps.10.key -function/1/nvim-tree.keymap.keymaps.11.callback -string/nvim-tree.keymap.keymaps.11.desc -string/nvim-tree.keymap.keymaps.11.key -function/1/nvim-tree.keymap.keymaps.12.callback -string/nvim-tree.keymap.keymaps.12.desc -string/nvim-tree.keymap.keymaps.12.key -function/1/nvim-tree.keymap.keymaps.13.callback -string/nvim-tree.keymap.keymaps.13.desc -string/nvim-tree.keymap.keymaps.13.key -function/1/nvim-tree.keymap.keymaps.14.callback -string/nvim-tree.keymap.keymaps.14.desc -string/nvim-tree.keymap.keymaps.14.key -function/0/nvim-tree.keymap.keymaps.15.callback -string/nvim-tree.keymap.keymaps.15.desc -string/nvim-tree.keymap.keymaps.15.key -function/0/nvim-tree.keymap.keymaps.16.callback -string/nvim-tree.keymap.keymaps.16.desc -string/nvim-tree.keymap.keymaps.16.key -function/0/nvim-tree.keymap.keymaps.17.callback -string/nvim-tree.keymap.keymaps.17.desc -string/nvim-tree.keymap.keymaps.17.key -function/2/nvim-tree.keymap.keymaps.18.callback -string/nvim-tree.keymap.keymaps.18.desc -string/nvim-tree.keymap.keymaps.18.key -function/1/nvim-tree.keymap.keymaps.19.callback -string/nvim-tree.keymap.keymaps.19.desc -string/nvim-tree.keymap.keymaps.19.key -function/1/nvim-tree.keymap.keymaps.20.callback -string/nvim-tree.keymap.keymaps.20.desc -string/nvim-tree.keymap.keymaps.20.key -function/1/nvim-tree.keymap.keymaps.21.callback -string/nvim-tree.keymap.keymaps.21.desc -string/nvim-tree.keymap.keymaps.21.key -function/1/nvim-tree.keymap.keymaps.22.callback -string/nvim-tree.keymap.keymaps.22.desc -string/nvim-tree.keymap.keymaps.22.key -function/1/nvim-tree.keymap.keymaps.23.callback -string/nvim-tree.keymap.keymaps.23.desc -string/nvim-tree.keymap.keymaps.23.key -function/1/nvim-tree.keymap.keymaps.24.callback -string/nvim-tree.keymap.keymaps.24.desc -string/nvim-tree.keymap.keymaps.24.key -function/1/nvim-tree.keymap.keymaps.25.callback -string/nvim-tree.keymap.keymaps.25.desc -string/nvim-tree.keymap.keymaps.25.key -function/1/nvim-tree.keymap.keymaps.26.callback -string/nvim-tree.keymap.keymaps.26.desc -string/nvim-tree.keymap.keymaps.26.key -function/1/nvim-tree.keymap.keymaps.27.callback -string/nvim-tree.keymap.keymaps.27.desc -string/nvim-tree.keymap.keymaps.27.key -function/1/nvim-tree.keymap.keymaps.28.callback -string/nvim-tree.keymap.keymaps.28.desc -string/nvim-tree.keymap.keymaps.28.key -function/1/nvim-tree.keymap.keymaps.29.callback -string/nvim-tree.keymap.keymaps.29.desc -string/nvim-tree.keymap.keymaps.29.key -function/1/nvim-tree.keymap.keymaps.30.callback -string/nvim-tree.keymap.keymaps.30.desc -string/nvim-tree.keymap.keymaps.30.key -function/1/nvim-tree.keymap.keymaps.31.callback -string/nvim-tree.keymap.keymaps.31.desc -string/nvim-tree.keymap.keymaps.31.key -function/1/nvim-tree.keymap.keymaps.32.callback -string/nvim-tree.keymap.keymaps.32.desc -string/nvim-tree.keymap.keymaps.32.key -function/1/nvim-tree.keymap.keymaps.33.callback -string/nvim-tree.keymap.keymaps.33.desc -string/nvim-tree.keymap.keymaps.33.key -function/1/nvim-tree.keymap.keymaps.34.callback -string/nvim-tree.keymap.keymaps.34.desc -string/nvim-tree.keymap.keymaps.34.key -function/1/nvim-tree.keymap.keymaps.35.callback -string/nvim-tree.keymap.keymaps.35.desc -string/nvim-tree.keymap.keymaps.35.key -function/0/nvim-tree.keymap.keymaps.36.callback -string/nvim-tree.keymap.keymaps.36.desc -string/nvim-tree.keymap.keymaps.36.key -function/0/nvim-tree.keymap.keymaps.37.callback -string/nvim-tree.keymap.keymaps.37.desc -string/nvim-tree.keymap.keymaps.37.key -function/0/nvim-tree.keymap.keymaps.38.callback -string/nvim-tree.keymap.keymaps.38.desc -string/nvim-tree.keymap.keymaps.38.key -function/1/nvim-tree.keymap.keymaps.39.callback -string/nvim-tree.keymap.keymaps.39.desc -string/nvim-tree.keymap.keymaps.39.key -function/1/nvim-tree.keymap.keymaps.40.callback -string/nvim-tree.keymap.keymaps.40.desc -string/nvim-tree.keymap.keymaps.40.key -function/0/nvim-tree.keymap.keymaps.41.callback -string/nvim-tree.keymap.keymaps.41.desc -string/nvim-tree.keymap.keymaps.41.key -function/1/nvim-tree.keymap.keymaps.42.callback -string/nvim-tree.keymap.keymaps.42.desc -string/nvim-tree.keymap.keymaps.42.key -function/1/nvim-tree.keymap.keymaps.43.callback -string/nvim-tree.keymap.keymaps.43.desc -string/nvim-tree.keymap.keymaps.43.key -function/0/nvim-tree.keymap.keymaps.44.callback -string/nvim-tree.keymap.keymaps.44.desc -string/nvim-tree.keymap.keymaps.44.key -function/1/nvim-tree.keymap.keymaps.45.callback -string/nvim-tree.keymap.keymaps.45.desc -string/nvim-tree.keymap.keymaps.45.key -function/0/nvim-tree.keymap.keymaps.46.callback -string/nvim-tree.keymap.keymaps.46.desc -string/nvim-tree.keymap.keymaps.46.key -function/1/nvim-tree.keymap.setup -function/2/nvim-tree.explorer.explore -function/3/nvim-tree.explorer.reload -function/1/nvim-tree.explorer.setup -function/1/nvim-tree.explorer.Explorer.destroy -function/1/nvim-tree.explorer.Explorer.new -function/2/nvim-tree.explorer.Explorer._load -function/2/nvim-tree.explorer.Explorer.expand -function/1/nvim-tree.live-filter.apply_filter -function/1/nvim-tree.live-filter.setup -boolean/nvim-tree.live-filter.always_show_folders -string/nvim-tree.live-filter.prefix -function/0/nvim-tree.live-filter.start_filtering -function/0/nvim-tree.live-filter.clear_filter -function/1/nvim-tree.marks.toggle_mark -function/1/nvim-tree.marks.get_mark -function/0/nvim-tree.marks.clear_marks -function/0/nvim-tree.marks.get_marks -function/1/nvim-tree.marks.setup -function/0/nvim-tree.marks.draw -function/0/nvim-tree.marks.clear -function/1/nvim-tree.watcher.Watcher.destroy -function/5/nvim-tree.watcher.Watcher.new -function/1/nvim-tree.watcher.Watcher.start -function/0/nvim-tree.watcher.purge_watchers -function/1/nvim-tree.watcher.is_fs_event_capable -function/1/luasnip.util.parser.ast_utils.parse_order -function/1/luasnip.util.parser.ast_utils.apply_transform -function/1/luasnip.util.parser.ast_utils.add_dependents -function/1/luasnip.util.parser.ast_utils.fix_zero -function/1/luasnip.util.parser.ast_utils.give_vars_previous_text -function/1/luasnip.util.parser.ast_utils.give_vars_potential_tabstop -function/2/luasnip.util.parser.ast_parser.to_luasnip_nodes -function/1/nvim-autopairs._log.error -function/1/nvim-autopairs._log.info -function/1/nvim-autopairs._log.debug -function/3/nvim-autopairs.utils.compare -function/2/nvim-autopairs.utils.text_get_line -function/2/nvim-autopairs.utils.repeat_key -function/3/nvim-autopairs.utils.text_sub_char -function/1/nvim-autopairs.utils.insert_char -function/1/nvim-autopairs.utils.get_prev_char -function/1/nvim-autopairs.utils.is_bracket -function/1/nvim-autopairs.utils.is_quote -function/3/nvim-autopairs.utils.is_in_quotes -function/1/nvim-autopairs.utils.set_vchar -function/2/nvim-autopairs.utils.feed -function/1/nvim-autopairs.utils.esc -function/1/nvim-autopairs.utils.text_get_current_line -function/2/nvim-autopairs.utils.set_attach -function/1/nvim-autopairs.utils.get_cursor -function/0/nvim-autopairs.utils.is_block_wise_mode -function/1/nvim-autopairs.utils.is_close_bracket -function/2/nvim-autopairs.utils.check_filetype -function/2/nvim-autopairs.utils.check_not_filetype -function/5/nvim-autopairs.utils.text_cusor_line -function/2/nvim-autopairs.utils.is_in_table -string/nvim-autopairs.utils.key.right -string/nvim-autopairs.utils.key.join_right -string/nvim-autopairs.utils.key.bs -string/nvim-autopairs.utils.key.left -string/nvim-autopairs.utils.key.abbr -string/nvim-autopairs.utils.key.noundo_sequence -string/nvim-autopairs.utils.key.undo_sequence -string/nvim-autopairs.utils.key.c_h -string/nvim-autopairs.utils.key.del -string/nvim-autopairs.utils.key.join_left -function/3/nvim-autopairs.utils.is_in_range -function/1/nvim-autopairs.utils.is_attached -function/2/luasnip.nodes.textNode.T -boolean/luasnip.nodes.textNode.textNode.static_visible -boolean/luasnip.nodes.textNode.textNode.merge_node_ext_opts -function/1/luasnip.nodes.textNode.textNode.update_all_dependents -boolean/luasnip.nodes.textNode.textNode.visited -boolean/luasnip.nodes.textNode.textNode.visible -function/1/luasnip.nodes.textNode.textNode.is_interactive -number/luasnip.nodes.textNode.textNode.node_ext_opts.base_prio -function/3/luasnip.nodes.textNode.textNode.input_enter -function/1/nvim-autopairs.rules.basic.quote_creator -function/1/nvim-autopairs.rules.basic.setup -function/1/nvim-autopairs.rules.basic.bracket_creator -number/luasnip.util.events.change_choice -number/luasnip.util.events.pre_expand -number/luasnip.util.events.enter -number/luasnip.util.events.leave -function/2/luasnip.util.events.to_string -function/1/luasnip.nodes.util.wrap_args -function/2/luasnip.nodes.util.get_nodes_between -function/3/luasnip.nodes.util.leave_nodes_between -function/3/luasnip.nodes.util.enter_nodes_between -function/1/luasnip.nodes.util.select_node -function/3/luasnip.nodes.util.init_child_positions_func -function/1/luasnip.nodes.util.print_dict -function/1/luasnip.nodes.util.init_node_opts -function/2/luasnip.nodes.util.snippet_extend_context -function/3/luasnip.nodes.util.make_args_absolute -function/2/luasnip.nodes.util.subsnip_init_children -function/1/luasnip.nodes.node.Node.get_docstring -function/1/luasnip.nodes.node.Node.update_dependents -function/1/luasnip.nodes.node.Node.is_interactive -function/1/luasnip.nodes.node.Node._update_dependents -function/1/luasnip.nodes.node.Node.exit -function/2/luasnip.nodes.node.Node.jumpable -function/1/luasnip.nodes.node.Node.update_static -function/1/luasnip.nodes.node.Node.get_static_text -function/1/luasnip.nodes.node.Node.get_text -function/1/luasnip.nodes.node.Node.set_old_text -function/1/luasnip.nodes.node.Node.update_restore -function/1/luasnip.nodes.node.Node.store -function/2/luasnip.nodes.node.Node.indent -function/1/luasnip.nodes.node.Node.get_args -function/4/luasnip.nodes.node.Node.jump_from -function/2/luasnip.nodes.node.Node.set_ext_opts -function/3/luasnip.nodes.node.Node.expand_tabs -function/1/luasnip.nodes.node.Node.get_static_args -function/1/luasnip.nodes.node.Node.get_jump_index -function/2/luasnip.nodes.node.Node.init_dry_run_active -function/2/luasnip.nodes.node.Node.get_buf_position -function/2/luasnip.nodes.node.Node.is_active -function/1/luasnip.nodes.node.Node.static_init -function/3/luasnip.nodes.node.Node.resolve_node_ext_opts -function/4/luasnip.nodes.node.Node.jump_into -function/2/luasnip.nodes.node.Node.init_positions -function/2/luasnip.nodes.node.Node.init_insert_positions -function/1/luasnip.nodes.node.Node.make_args_absolute -function/1/luasnip.nodes.node.Node.set_dependents -function/2/luasnip.nodes.node.Node.event -function/1/luasnip.nodes.node.Node.subsnip_init -function/2/luasnip.nodes.node.Node.set_argnodes -function/2/luasnip.nodes.node.Node.put_initial -function/3/luasnip.nodes.node.Node.input_enter -function/1/luasnip.nodes.node.Node.update -function/1/luasnip.nodes.node.Node.get_passive_ext_opts -function/1/luasnip.nodes.node.Node.update_all_dependents -function/3/luasnip.nodes.node.Node.new -function/1/luasnip.nodes.node.Node.find_node -function/3/luasnip.nodes.node.Node.input_leave -function/3/luasnip.nodes.node.Node.set_mark_rgrav -boolean/luasnip.nodes.node.Node.ext_gravities_active.1 -boolean/luasnip.nodes.node.Node.ext_gravities_active.2 -function/2/luasnip.nodes.node.Node.insert_to_node_absolute -function/1/luasnip.nodes.node.Node.update_dependents_static -function/1/luasnip.nodes.node.Node.update_all_dependents_static -function/1/luasnip.nodes.node.Node._update_dependents_static -function/2/luasnip.nodes.node.Node.resolve_position -function/3/luasnip.util.parser.parse_snipmate -function/3/luasnip.util.parser.parse_snippet -function/3/package.loaded.luasnip.nodes.snippetProxy -function/1/nvim-tree.actions.dispatch.dispatch -function/1/nvim-tree.actions.dispatch.setup -function/1/luasnip.loaders.from_snipmate._load_lazy_loaded_ft -function/1/luasnip.loaders.from_snipmate._load_lazy_loaded -function/1/luasnip.loaders.from_snipmate.load -function/1/luasnip.loaders.from_snipmate.lazy_load -function/1/luasnip.loaders.from_snipmate._reload_file -function/0/luasnip.loaders.from_snipmate.edit_snippet_files -function/0/mpack.Session -function/0/mpack.decode -function/0/mpack.encode -userdata/mpack.NIL -function/0/mpack.Unpacker -function/0/mpack.Packer -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..i -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..i -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..s -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..i -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..i -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..i -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..s -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..i -function/1/cmp.config.cache.entries.get:default:2::1:35:1.mapping..i -string/cmp.config.cache.entries.get:default:2::1:35:1.preselect -boolean/cmp.config.cache.entries.get:default:2::1:35:1.matching.disallow_partial_matching -boolean/cmp.config.cache.entries.get:default:2::1:35:1.matching.disallow_partial_fuzzy_matching -boolean/cmp.config.cache.entries.get:default:2::1:35:1.matching.disallow_fuzzy_matching -boolean/cmp.config.cache.entries.get:default:2::1:35:1.matching.disallow_prefix_unmatching -boolean/cmp.config.cache.entries.get:default:2::1:35:1.experimental.ghost_text -string/cmp.config.cache.entries.get:default:2::1:35:1.confirmation.default_behavior -function/1/cmp.config.cache.entries.get:default:2::1:35:1.confirmation.get_commit_characters -string/cmp.config.cache.entries.get:default:2::1:35:1.window.completion.winhighlight -number/cmp.config.cache.entries.get:default:2::1:35:1.window.completion.scrolloff -number/cmp.config.cache.entries.get:default:2::1:35:1.window.completion.col_offset -number/cmp.config.cache.entries.get:default:2::1:35:1.window.completion.side_padding -boolean/cmp.config.cache.entries.get:default:2::1:35:1.window.completion.scrollbar -string/cmp.config.cache.entries.get:default:2::1:35:1.window.documentation.winhighlight -number/cmp.config.cache.entries.get:default:2::1:35:1.window.documentation.max_width -number/cmp.config.cache.entries.get:default:2::1:35:1.window.documentation.max_height -function/1/cmp.config.cache.entries.get:default:2::1:35:1.snippet.expand -number/cmp.config.cache.entries.get:default:2::1:35:1.performance.throttle -number/cmp.config.cache.entries.get:default:2::1:35:1.performance.debounce -number/cmp.config.cache.entries.get:default:2::1:35:1.performance.fetching_timeout -number/cmp.config.cache.entries.get:default:2::1:35:1.revision -number/cmp.config.cache.entries.get:default:2::1:35:1.sorting.priority_weight -function/2/cmp.config.cache.entries.get:default:2::1:35:1.sorting.comparators.1 -function/2/cmp.config.cache.entries.get:default:2::1:35:1.sorting.comparators.2 -function/2/cmp.config.cache.entries.get:default:2::1:35:1.sorting.comparators.3 -function/2/cmp.config.cache.entries.get:default:2::1:35:1.sorting.comparators.6 -function/2/cmp.config.cache.entries.get:default:2::1:35:1.sorting.comparators.7 -function/2/cmp.config.cache.entries.get:default:2::1:35:1.sorting.comparators.8 -string/cmp.config.cache.entries.get:default:2::1:35:1.formatting.fields.1 -string/cmp.config.cache.entries.get:default:2::1:35:1.formatting.fields.2 -string/cmp.config.cache.entries.get:default:2::1:35:1.formatting.fields.3 -function/2/cmp.config.cache.entries.get:default:2::1:35:1.formatting.format -boolean/cmp.config.cache.entries.get:default:2::1:35:1.formatting.expandable_indicator -function/0/cmp.config.cache.entries.get:default:2::1:35:1.enabled -string/cmp.config.cache.entries.get:default:2::1:35:1.view.entries.name -string/cmp.config.cache.entries.get:default:2::1:35:1.view.entries.selection_order -string/cmp.config.cache.entries.get:default:2::1:35:1.completion.completeopt -number/cmp.config.cache.entries.get:default:2::1:35:1.completion.keyword_length -string/cmp.config.cache.entries.get:default:2::1:35:1.completion.autocomplete.1 -string/cmp.config.cache.entries.get:default:2::1:35:1.completion.keyword_pattern -number/cmp.config.cache.entries.get:default:2::1:35:1.sources.1.group_index -string/cmp.config.cache.entries.get:default:2::1:35:1.sources.1.name -number/cmp.config.cache.entries.get:default:2::1:35:1.sources.2.group_index -string/cmp.config.cache.entries.get:default:2::1:35:1.sources.2.name -string/cmp.config.cache.entries.get:cmdline:2:/:1.preselect -number/cmp.config.cache.entries.get:cmdline:2:/:1.revision -function/0/cmp.config.cache.entries.get:cmdline:2:/:1.enabled -string/cmp.config.cache.entries.get:default:2:vim:1:24:1.preselect -number/cmp.config.cache.entries.get:default:2:vim:1:24:1.revision -function/0/cmp.config.cache.entries.get:default:2:vim:1:24:1.enabled -string/cmp.config.cache.entries.get:cmdline:2::1.preselect -number/cmp.config.cache.entries.get:cmdline:2::1.revision -function/0/cmp.config.cache.entries.get:cmdline:2::1.enabled -string/cmp.config.cache.entries.get:default:2::1:22:1.preselect -number/cmp.config.cache.entries.get:default:2::1:22:1.revision -function/0/cmp.config.cache.entries.get:default:2::1:22:1.enabled -function/0/cmp.config.cache.entries.get:default:0::1:1:1.enabled -function/2/cmp.config.cache.entries.get:default:0::1:1:1.formatting.format -boolean/cmp.config.cache.entries.get:default:0::1:1:1.formatting.expandable_indicator -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.winhighlight -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.border.1 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.border.2 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.border.3 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.border.4 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.border.5 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.border.6 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.border.7 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.border.8 -number/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.max_width -number/cmp.config.cache.entries.get:default:0::1:1:1.window.documentation.max_height -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.winhighlight -number/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.scrolloff -number/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.col_offset -number/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.side_padding -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.border.1 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.border.2 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.border.3 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.border.4 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.border.5 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.border.6 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.border.7 -string/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.border.8 -boolean/cmp.config.cache.entries.get:default:0::1:1:1.window.completion.scrollbar -function/1/cmp.config.cache.entries.get:default:0::1:1:1.snippet.expand -number/cmp.config.cache.entries.get:default:0::1:1:1.revision -string/cmp.config.cache.entries.get:default:0::1:1:1.preselect -string/cmp.config.cache.entries.get:default:2::1:51:1.preselect -number/cmp.config.cache.entries.get:default:2::1:51:1.revision -function/0/cmp.config.cache.entries.get:default:2::1:51:1.enabled -string/cmp.config.cache.entries.get:cmdline:2:::1.preselect -number/cmp.config.cache.entries.get:cmdline:2:::1.revision -function/0/cmp.config.cache.entries.get:cmdline:2:::1.enabled -string/cmp.config.cache.entries.get:default:2:nix:1:1:1.preselect -number/cmp.config.cache.entries.get:default:2:nix:1:1:1.revision -function/0/cmp.config.cache.entries.get:default:2:nix:1:1:1.enabled -string/cmp.config.cache.entries.get:default:2:lua:1:22:1.preselect -number/cmp.config.cache.entries.get:default:2:lua:1:22:1.revision -function/0/cmp.config.cache.entries.get:default:2:lua:1:22:1.enabled -function/2/cmp.config.set_cmdline -function/1/cmp.config.set_onetime -function/0/cmp.config.is_native_menu -function/1/cmp.config.get_source_config -number/cmp.config.onetime.revision -function/1/cmp.config.normalize -function/0/cmp.config.global.enabled -number/cmp.config.global.revision -string/cmp.config.global.preselect -function/0/cmp.config.enabled -function/2/cmp.config.set_filetype -function/0/cmp.config.get -function/2/cmp.config.set_buffer -function/1/cmp.config.set_global -function/0/cmp.utils.feedkeys.call.callbacks.57 -function/1/cmp.utils.autocmd.emit -function/0/cmp.utils.autocmd.events.CursorMovedI.1 -function/0/cmp.utils.autocmd.events.CmdlineLeave.1 -function/0/cmp.utils.autocmd.events.TextChangedI.1 -function/0/cmp.utils.autocmd.events.CompleteChanged.1 -function/0/cmp.utils.autocmd.events.CompleteChanged.2 -function/0/cmp.utils.autocmd.events.CompleteChanged.3 -function/0/cmp.utils.autocmd.events.InsertEnter.1 -function/0/cmp.utils.autocmd.events.CmdlineEnter.1 -function/0/cmp.utils.autocmd.events.ColorScheme.1 -function/0/cmp.utils.autocmd.events.CmdlineChanged.1 -function/0/cmp.utils.autocmd.events.TextChangedP.1 -function/0/cmp.utils.autocmd.events.InsertLeave.1 -number/cmp.utils.autocmd.group -function/2/cmp.utils.autocmd.subscribe -function/3/nvim-tree.explorer.node-builders.folder -function/3/nvim-tree.explorer.node-builders.link -function/1/nvim-tree.explorer.node-builders.is_executable -function/3/nvim-tree.explorer.node-builders.file -function/1/luasnip.loaders.from_lua._load_lazy_loaded -function/1/luasnip.loaders.from_lua.lazy_load -function/1/luasnip.loaders.from_lua.load -function/1/luasnip.loaders.from_lua._load_lazy_loaded_ft -function/1/luasnip.loaders.from_lua._reload_file -function/0/luasnip.loaders.from_lua.edit_snippet_files -function/1/cmp.utils.misc.once -function/2/cmp.utils.misc.rep -function/1/cmp.utils.misc.copy -number/cmp.utils.misc.id.group.entry.new -number/cmp.utils.misc.id.group.cmp.utils.feedkeys.call -number/cmp.utils.misc.id.group.cmp.utils.window.new -number/cmp.utils.misc.id.group.cmp.source.new -number/cmp.utils.misc.id.group.cmp.context.new -function/2/cmp.utils.misc.bool -boolean/cmp.utils.misc.redraw.doing -string/cmp.utils.misc.redraw.incsearch_redraw_keys -boolean/cmp.utils.misc.redraw.force -function/2/cmp.utils.misc.deprecated -function/2/cmp.utils.misc.to_utfindex -function/1/cmp.utils.misc.empty -function/2/cmp.utils.misc.to_vimindex -function/2/cmp.utils.misc.merge -function/2/cmp.utils.misc.concat -userdata/cmp.utils.misc.none -function/3/cmp.utils.misc.set -function/2/cmp.utils.async.throttle -function/0/cmp.utils.async.step -function/2/cmp.utils.async.timeout -function/0/cmp.utils.async.dedup -function/1/cmp.utils.async.debounce_next_tick_by_keymap -function/1/cmp.utils.async.debounce_next_tick -function/2/cmp.utils.async.sync -function/1/nvim-tree.actions.finders.find-file.fn -boolean/package.loaded.cmp.types.vim -function/0/luasnip.util.path.normalize -function/1/luasnip.util.path.read_file -function/1/luasnip.util.path.exists -function/2/luasnip.util.path.basename -function/1/luasnip.util.path.scandir -function/0/luasnip.util.path.join -function/2/luasnip.util.path.async_read_file -function/1/luasnip.util.path.expand -function/0/package.loaded.cmp.config.sources -function/0/cmp_luasnip.clear_cache -function/3/cmp_luasnip.complete -function/1/cmp_luasnip.is_available -function/0/cmp_luasnip.refresh -function/3/cmp_luasnip.execute -function/0/cmp_luasnip.get_keyword_pattern -function/1/cmp_luasnip.get_debug_name -function/3/cmp_luasnip.resolve -function/0/cmp_luasnip.new -function/1/lspconfig.configs.svelte.setup -boolean/lspconfig.configs.svelte.autostart -function/1/lspconfig.configs.svelte.make_config -string/lspconfig.configs.svelte.filetypes.1 -function/0/lspconfig.configs.svelte.manager.clients -function/1/lspconfig.configs.svelte.manager.try_add -function/3/lspconfig.configs.svelte.manager.add -function/1/lspconfig.configs.svelte.manager.try_add_wrapper -string/lspconfig.configs.svelte.cmd.1 -string/lspconfig.configs.svelte.cmd.2 -string/lspconfig.configs.svelte.document_config.docs.default_config.root_dir -string/lspconfig.configs.svelte.document_config.docs.description -function/1/lspconfig.configs.svelte.document_config.default_config.root_dir -function/1/lspconfig.configs.svelte.get_root_dir -function/0/lspconfig.configs.svelte.launch -function/2/lspconfig.configs.svelte._setup_buffer -string/lspconfig.configs.svelte.name -function/1/lspconfig.configs.html.setup -boolean/lspconfig.configs.html.autostart -function/1/lspconfig.configs.html.make_config -string/lspconfig.configs.html.filetypes.1 -function/0/lspconfig.configs.html.manager.clients -function/1/lspconfig.configs.html.manager.try_add -function/3/lspconfig.configs.html.manager.add -function/1/lspconfig.configs.html.manager.try_add_wrapper -string/lspconfig.configs.html.cmd.1 -string/lspconfig.configs.html.cmd.2 -string/lspconfig.configs.html.document_config.docs.description -function/1/lspconfig.configs.html.document_config.default_config.root_dir -boolean/lspconfig.configs.html.document_config.default_config.init_options.provideFormatter -boolean/lspconfig.configs.html.document_config.default_config.init_options.embeddedLanguages.css -boolean/lspconfig.configs.html.document_config.default_config.init_options.embeddedLanguages.javascript -string/lspconfig.configs.html.document_config.default_config.init_options.configurationSection.1 -string/lspconfig.configs.html.document_config.default_config.init_options.configurationSection.2 -string/lspconfig.configs.html.document_config.default_config.init_options.configurationSection.3 -boolean/lspconfig.configs.html.document_config.default_config.single_file_support -function/1/lspconfig.configs.html.get_root_dir -function/0/lspconfig.configs.html.launch -function/2/lspconfig.configs.html._setup_buffer -string/lspconfig.configs.html.name -function/1/lspconfig.configs.cssls.setup -boolean/lspconfig.configs.cssls.autostart -function/1/lspconfig.configs.cssls.make_config -string/lspconfig.configs.cssls.filetypes.1 -string/lspconfig.configs.cssls.filetypes.2 -string/lspconfig.configs.cssls.filetypes.3 -function/0/lspconfig.configs.cssls.manager.clients -function/1/lspconfig.configs.cssls.manager.try_add -function/3/lspconfig.configs.cssls.manager.add -function/1/lspconfig.configs.cssls.manager.try_add_wrapper -string/lspconfig.configs.cssls.cmd.1 -string/lspconfig.configs.cssls.cmd.2 -string/lspconfig.configs.cssls.document_config.docs.default_config.root_dir -string/lspconfig.configs.cssls.document_config.docs.description -function/1/lspconfig.configs.cssls.document_config.default_config.root_dir -boolean/lspconfig.configs.cssls.document_config.default_config.settings.scss.validate -boolean/lspconfig.configs.cssls.document_config.default_config.settings.css.validate -boolean/lspconfig.configs.cssls.document_config.default_config.settings.less.validate -boolean/lspconfig.configs.cssls.document_config.default_config.single_file_support -function/1/lspconfig.configs.cssls.get_root_dir -function/0/lspconfig.configs.cssls.launch -function/2/lspconfig.configs.cssls._setup_buffer -string/lspconfig.configs.cssls.name -function/1/lspconfig.configs.tsserver.setup -boolean/lspconfig.configs.tsserver.autostart -function/1/lspconfig.configs.tsserver.make_config -string/lspconfig.configs.tsserver.filetypes.1 -string/lspconfig.configs.tsserver.filetypes.2 -string/lspconfig.configs.tsserver.filetypes.3 -string/lspconfig.configs.tsserver.filetypes.4 -string/lspconfig.configs.tsserver.filetypes.5 -string/lspconfig.configs.tsserver.filetypes.6 -function/0/lspconfig.configs.tsserver.manager.clients -function/1/lspconfig.configs.tsserver.manager.try_add -function/3/lspconfig.configs.tsserver.manager.add -function/1/lspconfig.configs.tsserver.manager.try_add_wrapper -string/lspconfig.configs.tsserver.cmd.1 -string/lspconfig.configs.tsserver.cmd.2 -string/lspconfig.configs.tsserver.document_config.docs.default_config.root_dir -string/lspconfig.configs.tsserver.document_config.docs.description -function/1/lspconfig.configs.tsserver.document_config.default_config.root_dir -boolean/lspconfig.configs.tsserver.document_config.default_config.single_file_support -string/lspconfig.configs.tsserver.document_config.default_config.init_options.hostInfo -function/1/lspconfig.configs.tsserver.get_root_dir -function/0/lspconfig.configs.tsserver.launch -function/2/lspconfig.configs.tsserver._setup_buffer -string/lspconfig.configs.tsserver.name -function/1/lspconfig.configs.jsonls.setup -boolean/lspconfig.configs.jsonls.autostart -function/1/lspconfig.configs.jsonls.make_config -string/lspconfig.configs.jsonls.filetypes.1 -string/lspconfig.configs.jsonls.filetypes.2 -function/0/lspconfig.configs.jsonls.manager.clients -function/1/lspconfig.configs.jsonls.manager.try_add -function/3/lspconfig.configs.jsonls.manager.add -function/1/lspconfig.configs.jsonls.manager.try_add_wrapper -string/lspconfig.configs.jsonls.cmd.1 -string/lspconfig.configs.jsonls.cmd.2 -string/lspconfig.configs.jsonls.document_config.docs.default_config.root_dir -string/lspconfig.configs.jsonls.document_config.docs.description -function/1/lspconfig.configs.jsonls.document_config.default_config.root_dir -boolean/lspconfig.configs.jsonls.document_config.default_config.single_file_support -boolean/lspconfig.configs.jsonls.document_config.default_config.init_options.provideFormatter -function/1/lspconfig.configs.jsonls.get_root_dir -function/0/lspconfig.configs.jsonls.launch -function/2/lspconfig.configs.jsonls._setup_buffer -string/lspconfig.configs.jsonls.name -function/1/lspconfig.configs.nil_ls.setup -boolean/lspconfig.configs.nil_ls.autostart -function/1/lspconfig.configs.nil_ls.make_config -function/0/lspconfig.configs.nil_ls.manager.clients -function/1/lspconfig.configs.nil_ls.manager.try_add -function/3/lspconfig.configs.nil_ls.manager.add -function/1/lspconfig.configs.nil_ls.manager.try_add_wrapper -string/lspconfig.configs.nil_ls.document_config.docs.default_config.root_dir -string/lspconfig.configs.nil_ls.document_config.docs.description -function/1/lspconfig.configs.nil_ls.document_config.default_config.root_dir -boolean/lspconfig.configs.nil_ls.document_config.default_config.single_file_support -function/1/lspconfig.configs.nil_ls.get_root_dir -function/0/lspconfig.configs.nil_ls.launch -function/2/lspconfig.configs.nil_ls._setup_buffer -string/lspconfig.configs.nil_ls.name -function/1/lspconfig.configs.taplo.setup -boolean/lspconfig.configs.taplo.autostart -function/1/lspconfig.configs.taplo.make_config -string/lspconfig.configs.taplo.filetypes.1 -function/0/lspconfig.configs.taplo.manager.clients -function/1/lspconfig.configs.taplo.manager.try_add -function/3/lspconfig.configs.taplo.manager.add -function/1/lspconfig.configs.taplo.manager.try_add_wrapper -string/lspconfig.configs.taplo.cmd.1 -string/lspconfig.configs.taplo.cmd.2 -string/lspconfig.configs.taplo.cmd.3 -string/lspconfig.configs.taplo.document_config.docs.default_config.root_dir -string/lspconfig.configs.taplo.document_config.docs.description -function/1/lspconfig.configs.taplo.document_config.default_config.root_dir -boolean/lspconfig.configs.taplo.document_config.default_config.single_file_support -function/1/lspconfig.configs.taplo.get_root_dir -function/0/lspconfig.configs.taplo.launch -function/2/lspconfig.configs.taplo._setup_buffer -string/lspconfig.configs.taplo.name -function/1/lspconfig.configs.marksman.setup -boolean/lspconfig.configs.marksman.autostart -function/1/lspconfig.configs.marksman.make_config -string/lspconfig.configs.marksman.filetypes.1 -function/0/lspconfig.configs.marksman.manager.clients -function/1/lspconfig.configs.marksman.manager.try_add -function/3/lspconfig.configs.marksman.manager.add -function/1/lspconfig.configs.marksman.manager.try_add_wrapper -string/lspconfig.configs.marksman.cmd.1 -string/lspconfig.configs.marksman.cmd.2 -string/lspconfig.configs.marksman.document_config.docs.default_config.root_dir -string/lspconfig.configs.marksman.document_config.docs.description -function/1/lspconfig.configs.marksman.document_config.default_config.root_dir -boolean/lspconfig.configs.marksman.document_config.default_config.single_file_support -function/1/lspconfig.configs.marksman.get_root_dir -function/0/lspconfig.configs.marksman.launch -function/2/lspconfig.configs.marksman._setup_buffer -string/lspconfig.configs.marksman.name -function/1/lspconfig.configs.bashls.setup -boolean/lspconfig.configs.bashls.autostart -function/1/lspconfig.configs.bashls.make_config -string/lspconfig.configs.bashls.filetypes.1 -function/0/lspconfig.configs.bashls.manager.clients -function/1/lspconfig.configs.bashls.manager.try_add -function/3/lspconfig.configs.bashls.manager.add -function/1/lspconfig.configs.bashls.manager.try_add_wrapper -string/lspconfig.configs.bashls.cmd.1 -string/lspconfig.configs.bashls.cmd.2 -string/lspconfig.configs.bashls.document_config.docs.default_config.root_dir -string/lspconfig.configs.bashls.document_config.docs.description -function/1/lspconfig.configs.bashls.document_config.default_config.root_dir -string/lspconfig.configs.bashls.document_config.default_config.cmd_env.GLOB_PATTERN -boolean/lspconfig.configs.bashls.document_config.default_config.single_file_support -function/1/lspconfig.configs.bashls.get_root_dir -function/0/lspconfig.configs.bashls.launch -function/2/lspconfig.configs.bashls._setup_buffer -string/lspconfig.configs.bashls.name -function/1/lspconfig.configs.clangd.setup -boolean/lspconfig.configs.clangd.autostart -function/1/lspconfig.configs.clangd.make_config -function/0/lspconfig.configs.clangd.manager.clients -function/1/lspconfig.configs.clangd.manager.try_add -function/3/lspconfig.configs.clangd.manager.add -function/1/lspconfig.configs.clangd.manager.try_add_wrapper -function/1/lspconfig.configs.clangd.get_root_dir -function/0/lspconfig.configs.clangd.launch -function/2/lspconfig.configs.clangd._setup_buffer -string/lspconfig.configs.clangd.name -function/1/lspconfig.configs.pylsp.setup -boolean/lspconfig.configs.pylsp.autostart -function/1/lspconfig.configs.pylsp.make_config -function/0/lspconfig.configs.pylsp.manager.clients -function/1/lspconfig.configs.pylsp.manager.try_add -function/3/lspconfig.configs.pylsp.manager.add -function/1/lspconfig.configs.pylsp.manager.try_add_wrapper -function/1/lspconfig.configs.pylsp.get_root_dir -function/0/lspconfig.configs.pylsp.launch -function/2/lspconfig.configs.pylsp._setup_buffer -string/lspconfig.configs.pylsp.name -function/1/lspconfig.configs.rust_analyzer.setup -boolean/lspconfig.configs.rust_analyzer.autostart -function/0/lspconfig.configs.rust_analyzer.commands.CargoReload.1 -string/lspconfig.configs.rust_analyzer.commands.CargoReload.description -function/1/lspconfig.configs.rust_analyzer.make_config -string/lspconfig.configs.rust_analyzer.filetypes.1 -function/0/lspconfig.configs.rust_analyzer.manager.clients -function/1/lspconfig.configs.rust_analyzer.manager.try_add -function/3/lspconfig.configs.rust_analyzer.manager.add -function/1/lspconfig.configs.rust_analyzer.manager.try_add_wrapper -string/lspconfig.configs.rust_analyzer.cmd.1 -string/lspconfig.configs.rust_analyzer.document_config.docs.default_config.root_dir -string/lspconfig.configs.rust_analyzer.document_config.docs.description -function/1/lspconfig.configs.rust_analyzer.document_config.default_config.root_dir -function/1/lspconfig.configs.rust_analyzer.get_root_dir -function/0/lspconfig.configs.rust_analyzer.launch -function/2/lspconfig.configs.rust_analyzer._setup_buffer -string/lspconfig.configs.rust_analyzer.name -string/cmp.utils.highlight.keys.1 -string/cmp.utils.highlight.keys.2 -string/cmp.utils.highlight.keys.3 -string/cmp.utils.highlight.keys.4 -string/cmp.utils.highlight.keys.5 -string/cmp.utils.highlight.keys.6 -string/cmp.utils.highlight.keys.7 -string/cmp.utils.highlight.keys.8 -string/cmp.utils.highlight.keys.9 -function/3/cmp.utils.highlight.inherit -function/0/luasnip.loaders._caches.cleanup -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft. -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft.nix -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft.all -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft.cmp_menu -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft.lua -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft.vim -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft.WhichKey -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft.cmp_docs -boolean/luasnip.loaders._caches.vscode.lazy_loaded_ft.help -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft. -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft.nix -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft.all -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft.cmp_menu -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft.lua -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft.vim -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft.WhichKey -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft.cmp_docs -boolean/luasnip.loaders._caches.lua.lazy_loaded_ft.help -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft. -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft.nix -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft.all -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft.cmp_menu -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft.lua -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft.vim -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft.WhichKey -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft.cmp_docs -boolean/luasnip.loaders._caches.snipmate.lazy_loaded_ft.help -boolean/package.loaded.vim._init_packages -function/1/nvim-autopairs.completion.cmp.on_confirm_done -boolean/nvim-autopairs.completion.cmp.filetypes.haskell -function/5/nvim-autopairs.completion.cmp.filetypes.clojurescript.(.handler -number/nvim-autopairs.completion.cmp.filetypes.clojurescript.(.kind.1 -number/nvim-autopairs.completion.cmp.filetypes.clojurescript.(.kind.2 -function/5/nvim-autopairs.completion.cmp.filetypes.janet.(.handler -number/nvim-autopairs.completion.cmp.filetypes.janet.(.kind.1 -number/nvim-autopairs.completion.cmp.filetypes.janet.(.kind.2 -boolean/nvim-autopairs.completion.cmp.filetypes.purescript -function/5/nvim-autopairs.completion.cmp.filetypes.clojure.(.handler -number/nvim-autopairs.completion.cmp.filetypes.clojure.(.kind.1 -number/nvim-autopairs.completion.cmp.filetypes.clojure.(.kind.2 -function/5/nvim-autopairs.completion.cmp.filetypes.*.(.handler -number/nvim-autopairs.completion.cmp.filetypes.*.(.kind.1 -number/nvim-autopairs.completion.cmp.filetypes.*.(.kind.2 -function/5/nvim-autopairs.completion.cmp.filetypes.fennel.(.handler -number/nvim-autopairs.completion.cmp.filetypes.fennel.(.kind.1 -number/nvim-autopairs.completion.cmp.filetypes.fennel.(.kind.2 -boolean/nvim-autopairs.completion.cmp.filetypes.tex -function/1/nvim-autopairs.get_buf_rules -function/2/nvim-autopairs.autopairs_map -function/0/nvim-autopairs.disable -function/1/nvim-autopairs.force_attach -function/1/nvim-autopairs.on_attach -function/2/nvim-autopairs.autopairs_insert -function/2/nvim-autopairs.set_buf_rule -function/1/nvim-autopairs.add_rule -function/1/nvim-autopairs.add_rules -function/1/nvim-autopairs.get_rule -function/1/nvim-autopairs.remove_rule -function/1/nvim-autopairs.autopairs_cr -function/1/nvim-autopairs.setup -function/0/nvim-autopairs.clear_rules -function/0/nvim-autopairs.autopairs_closequote_expr -function/0/nvim-autopairs.enable -function/0/nvim-autopairs.check_break_line_char -function/0/nvim-autopairs.completion_confirm -string/nvim-autopairs.config.disable_filetype.1 -string/nvim-autopairs.config.disable_filetype.2 -boolean/nvim-autopairs.config.map_bs -boolean/nvim-autopairs.config.map_c_h -boolean/nvim-autopairs.config.map_c_w -boolean/nvim-autopairs.config.map_cr -boolean/nvim-autopairs.config.disable_in_macro -boolean/nvim-autopairs.config.disable_in_visualblock -boolean/nvim-autopairs.config.disable_in_replace_mode -string/nvim-autopairs.config.ignored_next_char -boolean/nvim-autopairs.config.rules.1.is_regex -string/nvim-autopairs.config.rules.1.end_pair -boolean/nvim-autopairs.config.rules.1.end_pair_func -function/0/nvim-autopairs.config.rules.1.cr_cond.1 -boolean/nvim-autopairs.config.rules.1.is_multibyte -string/nvim-autopairs.config.rules.1.start_pair -string/nvim-autopairs.config.rules.1.filetypes.1 -boolean/nvim-autopairs.config.rules.1.is_endwise -string/nvim-autopairs.config.rules.1.key_map -boolean/nvim-autopairs.config.rules.2.is_regex -string/nvim-autopairs.config.rules.2.end_pair -boolean/nvim-autopairs.config.rules.2.end_pair_func -boolean/nvim-autopairs.config.rules.2.is_multibyte -string/nvim-autopairs.config.rules.2.start_pair -string/nvim-autopairs.config.rules.2.filetypes.1 -string/nvim-autopairs.config.rules.2.filetypes.2 -string/nvim-autopairs.config.rules.2.filetypes.3 -string/nvim-autopairs.config.rules.2.filetypes.4 -string/nvim-autopairs.config.rules.2.filetypes.5 -boolean/nvim-autopairs.config.rules.2.is_endwise -string/nvim-autopairs.config.rules.2.key_map -boolean/nvim-autopairs.config.rules.3.is_regex -string/nvim-autopairs.config.rules.3.end_pair -boolean/nvim-autopairs.config.rules.3.end_pair_func -boolean/nvim-autopairs.config.rules.3.del_cond -boolean/nvim-autopairs.config.rules.3.pair_cond -boolean/nvim-autopairs.config.rules.3.is_multibyte -boolean/nvim-autopairs.config.rules.3.move_cond -string/nvim-autopairs.config.rules.3.start_pair -string/nvim-autopairs.config.rules.3.filetypes.1 -string/nvim-autopairs.config.rules.3.filetypes.2 -string/nvim-autopairs.config.rules.3.filetypes.3 -string/nvim-autopairs.config.rules.3.filetypes.4 -string/nvim-autopairs.config.rules.3.filetypes.5 -boolean/nvim-autopairs.config.rules.3.is_endwise -string/nvim-autopairs.config.rules.3.key_map -boolean/nvim-autopairs.config.rules.4.is_regex -string/nvim-autopairs.config.rules.4.end_pair -boolean/nvim-autopairs.config.rules.4.end_pair_func -function/1/nvim-autopairs.config.rules.4.pair_cond.1 -boolean/nvim-autopairs.config.rules.4.is_multibyte -string/nvim-autopairs.config.rules.4.start_pair -string/nvim-autopairs.config.rules.4.filetypes.1 -string/nvim-autopairs.config.rules.4.filetypes.2 -string/nvim-autopairs.config.rules.4.filetypes.3 -string/nvim-autopairs.config.rules.4.filetypes.4 -boolean/nvim-autopairs.config.rules.4.is_endwise -string/nvim-autopairs.config.rules.4.key_map -boolean/nvim-autopairs.config.rules.5.is_regex -string/nvim-autopairs.config.rules.5.end_pair -boolean/nvim-autopairs.config.rules.5.end_pair_func -function/1/nvim-autopairs.config.rules.5.pair_cond.1 -boolean/nvim-autopairs.config.rules.5.is_multibyte -string/nvim-autopairs.config.rules.5.start_pair -string/nvim-autopairs.config.rules.5.filetypes.1 -boolean/nvim-autopairs.config.rules.5.is_endwise -string/nvim-autopairs.config.rules.5.key_map -boolean/nvim-autopairs.config.rules.6.is_regex -boolean/nvim-autopairs.config.rules.6.is_undo -string/nvim-autopairs.config.rules.6.end_pair -boolean/nvim-autopairs.config.rules.6.end_pair_func -function/1/nvim-autopairs.config.rules.6.pair_cond.1 -function/1/nvim-autopairs.config.rules.6.pair_cond.2 -function/1/nvim-autopairs.config.rules.6.pair_cond.3 -boolean/nvim-autopairs.config.rules.6.is_multibyte -function/1/nvim-autopairs.config.rules.6.move_cond.1 -string/nvim-autopairs.config.rules.6.not_filetypes.1 -string/nvim-autopairs.config.rules.6.start_pair -boolean/nvim-autopairs.config.rules.6.is_endwise -string/nvim-autopairs.config.rules.6.key_map -boolean/nvim-autopairs.config.rules.7.is_regex -string/nvim-autopairs.config.rules.7.end_pair -boolean/nvim-autopairs.config.rules.7.end_pair_func -function/1/nvim-autopairs.config.rules.7.pair_cond.1 -function/1/nvim-autopairs.config.rules.7.pair_cond.2 -function/1/nvim-autopairs.config.rules.7.pair_cond.3 -function/1/nvim-autopairs.config.rules.7.pair_cond.4 -boolean/nvim-autopairs.config.rules.7.is_multibyte -function/1/nvim-autopairs.config.rules.7.move_cond.1 -boolean/nvim-autopairs.config.rules.7.is_undo -string/nvim-autopairs.config.rules.7.start_pair -string/nvim-autopairs.config.rules.7.filetypes.1 -boolean/nvim-autopairs.config.rules.7.is_endwise -string/nvim-autopairs.config.rules.7.key_map -boolean/nvim-autopairs.config.rules.8.is_regex -string/nvim-autopairs.config.rules.8.end_pair -boolean/nvim-autopairs.config.rules.8.end_pair_func -function/1/nvim-autopairs.config.rules.8.pair_cond.1 -function/1/nvim-autopairs.config.rules.8.pair_cond.2 -boolean/nvim-autopairs.config.rules.8.is_multibyte -boolean/nvim-autopairs.config.rules.8.is_undo -function/1/nvim-autopairs.config.rules.8.move_cond.1 -string/nvim-autopairs.config.rules.8.start_pair -boolean/nvim-autopairs.config.rules.8.is_endwise -string/nvim-autopairs.config.rules.8.key_map -boolean/nvim-autopairs.config.rules.9.is_regex -boolean/nvim-autopairs.config.rules.9.is_undo -string/nvim-autopairs.config.rules.9.end_pair -boolean/nvim-autopairs.config.rules.9.end_pair_func -function/1/nvim-autopairs.config.rules.9.pair_cond.1 -function/1/nvim-autopairs.config.rules.9.pair_cond.2 -boolean/nvim-autopairs.config.rules.9.is_multibyte -function/1/nvim-autopairs.config.rules.9.move_cond.1 -string/nvim-autopairs.config.rules.9.not_filetypes.1 -string/nvim-autopairs.config.rules.9.start_pair -boolean/nvim-autopairs.config.rules.9.is_endwise -string/nvim-autopairs.config.rules.9.key_map -boolean/nvim-autopairs.config.rules.10.is_regex -string/nvim-autopairs.config.rules.10.end_pair -boolean/nvim-autopairs.config.rules.10.end_pair_func -function/1/nvim-autopairs.config.rules.10.pair_cond.1 -function/1/nvim-autopairs.config.rules.10.pair_cond.2 -function/1/nvim-autopairs.config.rules.10.pair_cond.3 -boolean/nvim-autopairs.config.rules.10.is_multibyte -function/1/nvim-autopairs.config.rules.10.move_cond.1 -boolean/nvim-autopairs.config.rules.10.is_undo -string/nvim-autopairs.config.rules.10.start_pair -string/nvim-autopairs.config.rules.10.filetypes.1 -boolean/nvim-autopairs.config.rules.10.is_endwise -string/nvim-autopairs.config.rules.10.key_map -boolean/nvim-autopairs.config.rules.11.is_regex -string/nvim-autopairs.config.rules.11.end_pair -boolean/nvim-autopairs.config.rules.11.end_pair_func -function/1/nvim-autopairs.config.rules.11.pair_cond.1 -function/1/nvim-autopairs.config.rules.11.pair_cond.2 -function/1/nvim-autopairs.config.rules.11.pair_cond.3 -boolean/nvim-autopairs.config.rules.11.is_multibyte -boolean/nvim-autopairs.config.rules.11.is_undo -function/1/nvim-autopairs.config.rules.11.move_cond.1 -function/1/nvim-autopairs.config.rules.11.move_cond.2 -string/nvim-autopairs.config.rules.11.start_pair -boolean/nvim-autopairs.config.rules.11.is_endwise -string/nvim-autopairs.config.rules.11.key_map -boolean/nvim-autopairs.config.rules.12.is_regex -string/nvim-autopairs.config.rules.12.end_pair -boolean/nvim-autopairs.config.rules.12.end_pair_func -function/1/nvim-autopairs.config.rules.12.pair_cond.1 -function/1/nvim-autopairs.config.rules.12.pair_cond.2 -function/1/nvim-autopairs.config.rules.12.pair_cond.3 -boolean/nvim-autopairs.config.rules.12.is_multibyte -boolean/nvim-autopairs.config.rules.12.is_undo -function/1/nvim-autopairs.config.rules.12.move_cond.1 -function/1/nvim-autopairs.config.rules.12.move_cond.2 -string/nvim-autopairs.config.rules.12.start_pair -boolean/nvim-autopairs.config.rules.12.is_endwise -string/nvim-autopairs.config.rules.12.key_map -boolean/nvim-autopairs.config.rules.13.is_regex -string/nvim-autopairs.config.rules.13.end_pair -boolean/nvim-autopairs.config.rules.13.end_pair_func -function/1/nvim-autopairs.config.rules.13.pair_cond.1 -function/1/nvim-autopairs.config.rules.13.pair_cond.2 -function/1/nvim-autopairs.config.rules.13.pair_cond.3 -boolean/nvim-autopairs.config.rules.13.is_multibyte -boolean/nvim-autopairs.config.rules.13.is_undo -function/1/nvim-autopairs.config.rules.13.move_cond.1 -function/1/nvim-autopairs.config.rules.13.move_cond.2 -string/nvim-autopairs.config.rules.13.start_pair -boolean/nvim-autopairs.config.rules.13.is_endwise -string/nvim-autopairs.config.rules.13.key_map -boolean/nvim-autopairs.config.rules.14.is_regex -string/nvim-autopairs.config.rules.14.end_pair -boolean/nvim-autopairs.config.rules.14.end_pair_func -boolean/nvim-autopairs.config.rules.14.del_cond -boolean/nvim-autopairs.config.rules.14.pair_cond -boolean/nvim-autopairs.config.rules.14.is_multibyte -boolean/nvim-autopairs.config.rules.14.move_cond -string/nvim-autopairs.config.rules.14.start_pair -string/nvim-autopairs.config.rules.14.filetypes.1 -string/nvim-autopairs.config.rules.14.filetypes.2 -string/nvim-autopairs.config.rules.14.filetypes.3 -string/nvim-autopairs.config.rules.14.filetypes.4 -string/nvim-autopairs.config.rules.14.filetypes.5 -string/nvim-autopairs.config.rules.14.filetypes.6 -string/nvim-autopairs.config.rules.14.filetypes.7 -string/nvim-autopairs.config.rules.14.filetypes.8 -string/nvim-autopairs.config.rules.14.filetypes.9 -boolean/nvim-autopairs.config.rules.14.is_endwise -string/nvim-autopairs.config.rules.14.key_map -boolean/nvim-autopairs.config.break_undo -boolean/nvim-autopairs.config.check_ts -boolean/nvim-autopairs.config.enable_moveright -boolean/nvim-autopairs.config.enable_afterquote -boolean/nvim-autopairs.config.enable_check_bracket_line -boolean/nvim-autopairs.config.enable_bracket_in_quote -boolean/nvim-autopairs.config.enable_abbr -string/nvim-autopairs.config.ts_config.javascript.1 -string/nvim-autopairs.config.ts_config.javascript.2 -string/nvim-autopairs.config.ts_config.lua.1 -string/nvim-autopairs.config.ts_config.lua.2 -function/1/nvim-autopairs.esc -function/1/nvim-autopairs.autopairs_c_w -function/0/nvim-autopairs.map_cr -function/1/nvim-autopairs.autopairs_c_h -function/1/nvim-autopairs.autopairs_bs -function/2/nvim-autopairs.autopairs_afterquote -string/nvim-autopairs.state.expr_quote -boolean/nvim-autopairs.state.disabled -function/1/vim.shared.tbl_flatten -function/4/vim.shared.list_extend -function/0/vim.shared._getvar -function/0/vim.shared._setvar -function/1/vim.shared.tbl_deep_extend -function/0/vim.shared.spell.check -function/0/vim.shared.iconv -function/0/vim.shared.api.nvim_win_get_tabpage -function/0/vim.shared.api.nvim_win_get_number -function/0/vim.shared.api.nvim_win_is_valid -function/0/vim.shared.api.nvim_win_hide -function/0/vim.shared.api.nvim_win_close -function/0/vim.shared.api.nvim_win_call -function/0/vim.shared.api.nvim_win_set_hl_ns -function/0/vim.shared.api.nvim_get_autocmds -function/0/vim.shared.api.nvim_create_autocmd -function/0/vim.shared.api.nvim_del_autocmd -function/0/vim.shared.api.nvim_clear_autocmds -function/0/vim.shared.api.nvim_create_augroup -function/0/vim.shared.api.nvim_del_augroup_by_id -function/0/vim.shared.api.nvim_del_augroup_by_name -function/0/vim.shared.api.nvim_exec_autocmds -function/0/vim.shared.api.nvim_buf_line_count -function/0/vim.shared.api.nvim_buf_attach -function/0/vim.shared.api.nvim__buf_redraw_range -function/0/vim.shared.api.nvim_buf_get_lines -function/0/vim.shared.api.nvim_buf_set_lines -function/0/vim.shared.api.nvim_buf_set_text -function/0/vim.shared.api.nvim_buf_get_text -function/0/vim.shared.api.nvim_buf_get_offset -function/0/vim.shared.api.nvim_buf_get_var -function/0/vim.shared.api.nvim_buf_get_changedtick -function/0/vim.shared.api.nvim_buf_get_keymap -function/0/vim.shared.api.nvim_buf_set_keymap -function/0/vim.shared.api.nvim_buf_del_keymap -function/0/vim.shared.api.nvim_buf_set_var -function/0/vim.shared.api.nvim_buf_del_var -function/0/vim.shared.api.nvim_buf_get_name -function/0/vim.shared.api.nvim_buf_set_name -function/0/vim.shared.api.nvim_buf_is_loaded -function/0/vim.shared.api.nvim_buf_delete -function/0/vim.shared.api.nvim_buf_is_valid -function/0/vim.shared.api.nvim_buf_del_mark -function/0/vim.shared.api.nvim_buf_set_mark -function/0/vim.shared.api.nvim_buf_get_mark -function/0/vim.shared.api.nvim_buf_call -function/0/vim.shared.api.nvim__buf_stats -function/0/vim.shared.api.nvim_parse_cmd -function/0/vim.shared.api.nvim_cmd -function/0/vim.shared.api.nvim_create_user_command -function/0/vim.shared.api.nvim_del_user_command -function/0/vim.shared.api.nvim_buf_create_user_command -function/0/vim.shared.api.nvim_buf_del_user_command -function/0/vim.shared.api.nvim_get_commands -function/0/vim.shared.api.nvim_buf_get_commands -function/0/vim.shared.api.nvim_command_output -function/0/vim.shared.api.nvim_buf_get_number -function/0/vim.shared.api.nvim_buf_clear_highlight -function/0/vim.shared.api.nvim_buf_set_virtual_text -function/0/vim.shared.api.nvim_create_namespace -function/0/vim.shared.api.nvim_get_namespaces -function/0/vim.shared.api.nvim_buf_get_extmark_by_id -function/0/vim.shared.api.nvim_buf_get_extmarks -function/0/vim.shared.api.nvim_buf_set_extmark -function/0/vim.shared.api.nvim_buf_del_extmark -function/0/vim.shared.api.nvim_buf_add_highlight -function/0/vim.shared.api.nvim_buf_clear_namespace -function/0/vim.shared.api.nvim_set_decoration_provider -function/0/vim.shared.api.nvim_get_option_value -function/0/vim.shared.api.nvim_set_option_value -function/0/vim.shared.api.nvim_get_all_options_info -function/0/vim.shared.api.nvim_get_option_info -function/0/vim.shared.api.nvim_set_option -function/0/vim.shared.api.nvim_get_option -function/0/vim.shared.api.nvim_buf_get_option -function/0/vim.shared.api.nvim_buf_set_option -function/0/vim.shared.api.nvim_win_get_option -function/0/vim.shared.api.nvim_win_set_option -function/0/vim.shared.api.nvim_tabpage_list_wins -function/0/vim.shared.api.nvim_tabpage_get_var -function/0/vim.shared.api.nvim_tabpage_set_var -function/0/vim.shared.api.nvim_tabpage_del_var -function/0/vim.shared.api.nvim_tabpage_get_win -function/0/vim.shared.api.nvim_tabpage_get_number -function/0/vim.shared.api.nvim_tabpage_is_valid -function/0/vim.shared.api.nvim_get_hl_by_name -function/0/vim.shared.api.nvim_get_hl_by_id -function/0/vim.shared.api.nvim_get_hl_id_by_name -function/0/vim.shared.api.nvim__get_hl_defs -function/0/vim.shared.api.nvim_set_hl -function/0/vim.shared.api.nvim_set_hl_ns -function/0/vim.shared.api.nvim_set_hl_ns_fast -function/0/vim.shared.api.nvim_feedkeys -function/0/vim.shared.api.nvim_input -function/0/vim.shared.api.nvim_input_mouse -function/0/vim.shared.api.nvim_replace_termcodes -function/0/vim.shared.api.nvim_notify -function/0/vim.shared.api.nvim_strwidth -function/0/vim.shared.api.nvim_list_runtime_paths -function/0/vim.shared.api.nvim__runtime_inspect -function/0/vim.shared.api.nvim_get_runtime_file -function/0/vim.shared.api.nvim__get_lib_dir -function/0/vim.shared.api.nvim__get_runtime -function/0/vim.shared.api.nvim_set_current_dir -function/0/vim.shared.api.nvim_get_current_line -function/0/vim.shared.api.nvim_set_current_line -function/0/vim.shared.api.nvim_del_current_line -function/0/vim.shared.api.nvim_get_var -function/0/vim.shared.api.nvim_set_var -function/0/vim.shared.api.nvim_del_var -function/0/vim.shared.api.nvim_get_vvar -function/0/vim.shared.api.nvim_set_vvar -function/0/vim.shared.api.nvim_echo -function/0/vim.shared.api.nvim_out_write -function/0/vim.shared.api.nvim_err_write -function/0/vim.shared.api.nvim_err_writeln -function/0/vim.shared.api.nvim_list_bufs -function/0/vim.shared.api.nvim_get_current_buf -function/0/vim.shared.api.nvim_set_current_buf -function/0/vim.shared.api.nvim_list_wins -function/0/vim.shared.api.nvim_get_current_win -function/0/vim.shared.api.nvim_set_current_win -function/0/vim.shared.api.nvim_create_buf -function/0/vim.shared.api.nvim_open_term -function/0/vim.shared.api.nvim_chan_send -function/0/vim.shared.api.nvim_list_tabpages -function/0/vim.shared.api.nvim_get_current_tabpage -function/0/vim.shared.api.nvim_set_current_tabpage -function/0/vim.shared.api.nvim_paste -function/0/vim.shared.api.nvim_put -function/0/vim.shared.api.nvim_get_color_by_name -function/0/vim.shared.api.nvim_get_color_map -function/0/vim.shared.api.nvim_get_context -function/0/vim.shared.api.nvim_load_context -function/0/vim.shared.api.nvim_get_mode -function/0/vim.shared.api.nvim_get_keymap -function/0/vim.shared.api.nvim_set_keymap -function/0/vim.shared.api.nvim_del_keymap -function/0/vim.shared.api.nvim_get_chan_info -function/0/vim.shared.api.nvim_list_chans -function/0/vim.shared.api.nvim__id -function/0/vim.shared.api.nvim__id_array -function/0/vim.shared.api.nvim__id_dictionary -function/0/vim.shared.api.nvim__id_float -function/0/vim.shared.api.nvim__stats -function/0/vim.shared.api.nvim_list_uis -function/0/vim.shared.api.nvim_get_proc_children -function/0/vim.shared.api.nvim_get_proc -function/0/vim.shared.api.nvim_select_popupmenu_item -function/0/vim.shared.api.nvim__inspect_cell -function/0/vim.shared.api.nvim__screenshot -function/0/vim.shared.api.nvim__unpack -function/0/vim.shared.api.nvim_del_mark -function/0/vim.shared.api.nvim_get_mark -function/0/vim.shared.api.nvim_eval_statusline -function/0/vim.shared.api.nvim_exec -function/0/vim.shared.api.nvim_command -function/0/vim.shared.api.nvim_eval -function/0/vim.shared.api.nvim_call_function -function/0/vim.shared.api.nvim_call_dict_function -function/0/vim.shared.api.nvim_parse_expression -function/0/vim.shared.api.nvim_open_win -function/0/vim.shared.api.nvim_win_set_config -function/0/vim.shared.api.nvim_win_get_config -function/0/vim.shared.api.nvim_win_get_buf -function/0/vim.shared.api.nvim_win_set_buf -function/0/vim.shared.api.nvim_win_get_cursor -function/0/vim.shared.api.nvim_win_set_cursor -function/0/vim.shared.api.nvim_win_get_height -function/0/vim.shared.api.nvim_win_set_height -function/0/vim.shared.api.nvim_win_get_width -function/0/vim.shared.api.nvim_win_set_width -function/0/vim.shared.api.nvim_win_get_var -function/0/vim.shared.api.nvim_win_set_var -function/0/vim.shared.api.nvim_win_del_var -function/0/vim.shared.api.nvim_win_get_position -boolean/vim.shared.type_idx -boolean/vim.shared.val_idx -string/vim.shared.types.5 -string/vim.shared.types.3 -number/vim.shared.types.array -number/vim.shared.types.dictionary -number/vim.shared.types.float -string/vim.shared.types.6 -function/3/vim.shared.highlight.create -number/vim.shared.highlight.priorities.syntax -number/vim.shared.highlight.priorities.user -number/vim.shared.highlight.priorities.diagnostics -number/vim.shared.highlight.priorities.treesitter -function/3/vim.shared.highlight.link -function/6/vim.shared.highlight.range -function/1/vim.shared.highlight.on_yank -function/0/vim.shared.schedule -function/0/vim.shared.in_fast_event -function/0/vim.shared.call -function/0/vim.shared.rpcrequest -function/0/vim.shared.rpcnotify -function/0/vim.shared.wait -function/0/vim.shared.ui_attach -function/0/vim.shared.ui_detach -function/0/vim.shared.is_thread -function/1/vim.shared._system -userdata/vim.shared.NIL -function/0/vim.shared._empty_dict_mt.__tostring -function/1/vim.shared.F.ok_or_nil -function/1/vim.shared.F.npcall -function/1/vim.shared.F.nil_wrap -function/0/vim.shared.F.pack_len -function/1/vim.shared.F.unpack_len -function/2/vim.shared.F.if_nil -userdata/vim.shared.json.null -userdata/vim.shared.json.empty_array -string/vim.shared.json._NAME -string/vim.shared.json._VERSION -function/0/vim.shared.json.decode -function/0/vim.shared.json.encode -function/0/vim.shared.json.encode_empty_table_as_object -function/0/vim.shared.json.decode_array_with_array_mt -function/0/vim.shared.json.encode_sparse_array -function/0/vim.shared.json.encode_max_depth -function/0/vim.shared.json.decode_max_depth -function/0/vim.shared.json.encode_number_precision -function/0/vim.shared.json.encode_keep_buffer -function/0/vim.shared.json.encode_invalid_numbers -function/0/vim.shared.json.decode_invalid_numbers -function/0/vim.shared.json.encode_escape_forward_slash -function/0/vim.shared.json.new -function/1/vim.shared.uri_from_bufnr -function/3/vim.shared.split -function/1/vim.shared.schedule_wrap -function/2/vim.shared.filetype.findany -function/3/vim.shared.filetype.getlines -function/1/vim.shared.filetype.match -function/1/vim.shared.filetype.add -function/2/vim.shared.filetype.matchregex -function/2/vim.shared.filetype.nextnonblank -function/3/vim.shared.keymap.del -function/4/vim.shared.keymap.set -function/2/vim.shared.diagnostic.config -function/2/vim.shared.diagnostic.disable -function/2/vim.shared.diagnostic.hide -function/1/vim.shared.diagnostic.toqflist -function/1/vim.shared.diagnostic.get_namespace -function/2/vim.shared.diagnostic._get_virt_text_chunks -function/1/vim.shared.diagnostic.fromqflist -function/2/vim.shared.diagnostic.handlers.underline.hide -function/4/vim.shared.diagnostic.handlers.underline.show -function/2/vim.shared.diagnostic.handlers.signs.hide -function/4/vim.shared.diagnostic.handlers.signs.show -function/2/vim.shared.diagnostic.handlers.virtual_text.hide -function/4/vim.shared.diagnostic.handlers.virtual_text.show -function/2/vim.shared.diagnostic.reset -function/4/vim.shared.diagnostic.set -function/4/vim.shared.diagnostic.show -function/1/vim.shared.diagnostic.open_float -function/2/vim.shared.diagnostic.get -function/2/vim.shared.diagnostic._execute_scheduled_display -function/1/vim.shared.diagnostic.setqflist -function/2/vim.shared.diagnostic.enable -string/vim.shared.diagnostic.severity.1 -string/vim.shared.diagnostic.severity.2 -string/vim.shared.diagnostic.severity.3 -string/vim.shared.diagnostic.severity.4 -number/vim.shared.diagnostic.severity.INFO -number/vim.shared.diagnostic.severity.I -number/vim.shared.diagnostic.severity.N -number/vim.shared.diagnostic.severity.W -number/vim.shared.diagnostic.severity.E -number/vim.shared.diagnostic.severity.WARN -number/vim.shared.diagnostic.severity.ERROR -number/vim.shared.diagnostic.severity.HINT -function/5/vim.shared.diagnostic.match -function/0/vim.shared.diagnostic.get_namespaces -function/1/vim.shared.diagnostic.get_prev -function/1/vim.shared.diagnostic.setloclist -function/1/vim.shared.diagnostic.get_prev_pos -function/1/vim.shared.diagnostic.get_next -function/1/vim.shared.diagnostic.get_next_pos -function/1/vim.shared.diagnostic.goto_next -function/1/vim.shared.diagnostic.goto_prev -function/2/vim.shared._expand_pat -function/2/vim.shared.on_key -function/1/vim.shared._expand_pat_get_parts -string/vim.shared._so_trails.1 -function/1/vim.shared._on_key -function/0/vim.shared._init_default_mappings -function/5/vim.shared.deprecate -function/4/vim.shared._cs_remote -function/0/vim.shared.pretty_print -function/2/vim.shared.startswith -boolean/vim.shared._submodules.lsp -boolean/vim.shared._submodules.treesitter -boolean/vim.shared._submodules.ui -boolean/vim.shared._submodules.fs -boolean/vim.shared._submodules.health -boolean/vim.shared._submodules.filetype -boolean/vim.shared._submodules.keymap -boolean/vim.shared._submodules.diagnostic -boolean/vim.shared._submodules.highlight -boolean/vim.shared._submodules.inspect -boolean/vim.shared._submodules.F -function/0/vim.shared.empty_dict -function/1/vim.shared._load_package -function/0/vim.shared.register_keystroke_callback -function/3/vim.shared.notify_once -function/3/vim.shared.notify -function/0/vim.shared.loop.getuid -function/0/vim.shared.loop.setuid -function/0/vim.shared.loop.getgid -function/0/vim.shared.loop.setgid -function/0/vim.shared.loop.getrusage -function/0/vim.shared.loop.guess_handle -function/0/vim.shared.loop.hrtime -function/0/vim.shared.loop.interface_addresses -function/0/vim.shared.loop.loadavg -function/0/vim.shared.loop.resident_set_memory -function/0/vim.shared.loop.set_process_title -function/0/vim.shared.loop.uptime -function/0/vim.shared.loop.version_string -function/0/vim.shared.loop.print_all_handles -function/0/vim.shared.loop.print_active_handles -function/0/vim.shared.loop.os_getenv -function/0/vim.shared.loop.os_setenv -function/0/vim.shared.loop.os_unsetenv -function/0/vim.shared.loop.os_gethostname -function/0/vim.shared.loop.if_indextoname -function/0/vim.shared.loop.if_indextoiid -function/0/vim.shared.loop.os_getppid -function/0/vim.shared.loop.os_getpid -function/0/vim.shared.loop.os_getpriority -function/0/vim.shared.loop.os_setpriority -function/0/vim.shared.loop.os_uname -function/0/vim.shared.loop.gettimeofday -function/0/vim.shared.loop.os_environ -function/0/vim.shared.loop.sleep -function/0/vim.shared.loop.new_thread -function/0/vim.shared.loop.loop_close -function/0/vim.shared.loop.run -function/0/vim.shared.loop.loop_mode -function/0/vim.shared.loop.loop_alive -function/0/vim.shared.loop.stop -function/0/vim.shared.loop.backend_fd -function/0/vim.shared.loop.backend_timeout -function/0/vim.shared.loop.now -function/0/vim.shared.loop.update_time -function/0/vim.shared.loop.walk -function/0/vim.shared.loop.loop_configure -function/0/vim.shared.loop.cancel -function/0/vim.shared.loop.req_get_type -function/0/vim.shared.loop.is_active -function/0/vim.shared.loop.is_closing -function/0/vim.shared.loop.ref -function/0/vim.shared.loop.unref -number/vim.shared.loop.constants.AI_V4MAPPED -number/vim.shared.loop.constants.AI_ALL -number/vim.shared.loop.constants.AI_NUMERICHOST -number/vim.shared.loop.constants.AI_PASSIVE -number/vim.shared.loop.constants.AI_NUMERICSERV -number/vim.shared.loop.constants.SIGHUP -number/vim.shared.loop.constants.SIGINT -number/vim.shared.loop.constants.SIGQUIT -number/vim.shared.loop.constants.SIGILL -number/vim.shared.loop.constants.SIGTRAP -number/vim.shared.loop.constants.SIGABRT -number/vim.shared.loop.constants.SIGIOT -number/vim.shared.loop.constants.SIGBUS -number/vim.shared.loop.constants.SIGFPE -number/vim.shared.loop.constants.SIGKILL -number/vim.shared.loop.constants.SIGUSR1 -number/vim.shared.loop.constants.SIGSEGV -number/vim.shared.loop.constants.SIGUSR2 -number/vim.shared.loop.constants.SIGPIPE -number/vim.shared.loop.constants.SIGALRM -number/vim.shared.loop.constants.SIGTERM -number/vim.shared.loop.constants.SIGCHLD -number/vim.shared.loop.constants.SIGSTKFLT -number/vim.shared.loop.constants.SIGCONT -number/vim.shared.loop.constants.SIGSTOP -number/vim.shared.loop.constants.SIGTSTP -number/vim.shared.loop.constants.SIGTTIN -number/vim.shared.loop.constants.SIGTTOU -number/vim.shared.loop.constants.SIGURG -number/vim.shared.loop.constants.SIGXCPU -number/vim.shared.loop.constants.SIGXFSZ -number/vim.shared.loop.constants.SIGVTALRM -number/vim.shared.loop.constants.SIGPROF -number/vim.shared.loop.constants.SIGWINCH -number/vim.shared.loop.constants.SIGIO -number/vim.shared.loop.constants.SIGPOLL -number/vim.shared.loop.constants.SIGPWR -number/vim.shared.loop.constants.SIGSYS -number/vim.shared.loop.constants.UDP_MMSG_FREE -number/vim.shared.loop.constants.UDP_RECVMMSG -number/vim.shared.loop.constants.UDP_MMSG_CHUNK -number/vim.shared.loop.constants.UDP_REUSEADDR -number/vim.shared.loop.constants.UDP_PARTIAL -number/vim.shared.loop.constants.UDP_IPV6ONLY -number/vim.shared.loop.constants.TCP_IPV6ONLY -number/vim.shared.loop.constants.O_RDONLY -number/vim.shared.loop.constants.O_WRONLY -number/vim.shared.loop.constants.O_RDWR -number/vim.shared.loop.constants.O_APPEND -number/vim.shared.loop.constants.O_CREAT -number/vim.shared.loop.constants.O_DSYNC -number/vim.shared.loop.constants.O_EXCL -number/vim.shared.loop.constants.O_NOCTTY -number/vim.shared.loop.constants.O_NONBLOCK -number/vim.shared.loop.constants.O_RSYNC -number/vim.shared.loop.constants.O_SYNC -number/vim.shared.loop.constants.O_TRUNC -number/vim.shared.loop.constants.SOCK_STREAM -number/vim.shared.loop.constants.SOCK_DGRAM -number/vim.shared.loop.constants.SOCK_SEQPACKET -number/vim.shared.loop.constants.SOCK_RAW -number/vim.shared.loop.constants.SOCK_RDM -number/vim.shared.loop.constants.AF_UNIX -number/vim.shared.loop.constants.AF_INET -number/vim.shared.loop.constants.AF_INET6 -number/vim.shared.loop.constants.AF_IPX -number/vim.shared.loop.constants.AF_NETLINK -number/vim.shared.loop.constants.AF_X25 -number/vim.shared.loop.constants.AF_AX25 -number/vim.shared.loop.constants.AF_ATMPVC -number/vim.shared.loop.constants.AF_APPLETALK -number/vim.shared.loop.constants.AF_PACKET -number/vim.shared.loop.constants.AI_ADDRCONFIG -function/0/vim.shared.loop.version -function/0/vim.shared.loop.metrics_idle_time -function/0/vim.shared.loop.translate_sys_error -function/0/vim.shared.loop.queue_work -function/0/vim.shared.loop.new_work -function/0/vim.shared.loop.thread_join -function/0/vim.shared.loop.thread_self -function/0/vim.shared.loop.thread_equal -function/0/vim.shared.loop.random -function/0/vim.shared.loop.new_tcp -function/0/vim.shared.loop.tcp_nodelay -function/0/vim.shared.loop.fs_close -function/0/vim.shared.loop.fs_open -function/0/vim.shared.loop.fs_read -function/0/vim.shared.loop.fs_unlink -function/0/vim.shared.loop.fs_write -function/0/vim.shared.loop.fs_mkdir -function/0/vim.shared.loop.fs_mkdtemp -function/0/vim.shared.loop.fs_mkstemp -function/0/vim.shared.loop.fs_rmdir -function/0/vim.shared.loop.fs_scandir -function/0/vim.shared.loop.fs_scandir_next -function/0/vim.shared.loop.fs_stat -function/0/vim.shared.loop.fs_fstat -function/0/vim.shared.loop.fs_lstat -function/0/vim.shared.loop.fs_rename -function/0/vim.shared.loop.fs_fsync -function/0/vim.shared.loop.fs_fdatasync -function/0/vim.shared.loop.fs_ftruncate -function/0/vim.shared.loop.fs_sendfile -function/0/vim.shared.loop.fs_chown -function/0/vim.shared.loop.fs_realpath -function/0/vim.shared.loop.fs_readlink -function/0/vim.shared.loop.fs_symlink -function/0/vim.shared.loop.fs_link -function/0/vim.shared.loop.fs_lutime -function/0/vim.shared.loop.fs_futime -function/0/vim.shared.loop.fs_utime -function/0/vim.shared.loop.fs_fchmod -function/0/vim.shared.loop.fs_chmod -function/0/vim.shared.loop.has_ref -function/0/vim.shared.loop.send_buffer_size -function/0/vim.shared.loop.recv_buffer_size -function/0/vim.shared.loop.fileno -function/0/vim.shared.loop.handle_get_type -function/0/vim.shared.loop.new_timer -function/0/vim.shared.loop.timer_start -function/0/vim.shared.loop.timer_stop -function/0/vim.shared.loop.timer_again -function/0/vim.shared.loop.timer_set_repeat -function/0/vim.shared.loop.timer_get_repeat -function/0/vim.shared.loop.timer_get_due_in -function/0/vim.shared.loop.new_prepare -function/0/vim.shared.loop.prepare_start -function/0/vim.shared.loop.prepare_stop -function/0/vim.shared.loop.new_check -function/0/vim.shared.loop.check_start -function/0/vim.shared.loop.check_stop -function/0/vim.shared.loop.new_idle -function/0/vim.shared.loop.idle_start -function/0/vim.shared.loop.idle_stop -function/0/vim.shared.loop.new_async -function/0/vim.shared.loop.async_send -function/0/vim.shared.loop.new_poll -function/0/vim.shared.loop.new_socket_poll -function/0/vim.shared.loop.poll_start -function/0/vim.shared.loop.poll_stop -function/0/vim.shared.loop.new_signal -function/0/vim.shared.loop.signal_start -function/0/vim.shared.loop.signal_start_oneshot -function/0/vim.shared.loop.signal_stop -function/0/vim.shared.loop.disable_stdio_inheritance -function/0/vim.shared.loop.spawn -function/0/vim.shared.loop.process_kill -function/0/vim.shared.loop.process_get_pid -function/0/vim.shared.loop.kill -function/0/vim.shared.loop.shutdown -function/0/vim.shared.loop.listen -function/0/vim.shared.loop.accept -function/0/vim.shared.loop.read_start -function/0/vim.shared.loop.read_stop -function/0/vim.shared.loop.write2 -function/0/vim.shared.loop.try_write -function/0/vim.shared.loop.try_write2 -function/0/vim.shared.loop.is_readable -function/0/vim.shared.loop.is_writable -function/0/vim.shared.loop.stream_set_blocking -function/0/vim.shared.loop.stream_get_write_queue_size -function/0/vim.shared.loop.close -function/0/vim.shared.loop.tcp_open -function/0/vim.shared.loop.write -function/0/vim.shared.loop.tcp_keepalive -function/0/vim.shared.loop.tcp_simultaneous_accepts -function/0/vim.shared.loop.tcp_bind -function/0/vim.shared.loop.tcp_getpeername -function/0/vim.shared.loop.tcp_getsockname -function/0/vim.shared.loop.tcp_connect -function/0/vim.shared.loop.tcp_write_queue_size -function/0/vim.shared.loop.tcp_close_reset -function/0/vim.shared.loop.socketpair -function/0/vim.shared.loop.new_pipe -function/0/vim.shared.loop.fs_access -function/0/vim.shared.loop.udp_try_send -function/0/vim.shared.loop.udp_recv_start -function/0/vim.shared.loop.udp_recv_stop -function/0/vim.shared.loop.udp_connect -function/0/vim.shared.loop.udp_getpeername -function/0/vim.shared.loop.new_fs_event -function/0/vim.shared.loop.fs_event_start -function/0/vim.shared.loop.fs_event_stop -function/0/vim.shared.loop.fs_event_getpath -function/0/vim.shared.loop.new_fs_poll -function/0/vim.shared.loop.fs_poll_start -function/0/vim.shared.loop.fs_poll_stop -function/0/vim.shared.loop.fs_poll_getpath -function/0/vim.shared.loop.pipe_open -function/0/vim.shared.loop.pipe_bind -function/0/vim.shared.loop.pipe_chmod -function/0/vim.shared.loop.pipe_connect -function/0/vim.shared.loop.pipe_getsockname -function/0/vim.shared.loop.pipe_getpeername -function/0/vim.shared.loop.pipe_pending_instances -function/0/vim.shared.loop.pipe_pending_count -function/0/vim.shared.loop.pipe_pending_type -function/0/vim.shared.loop.pipe -function/0/vim.shared.loop.new_tty -function/0/vim.shared.loop.tty_set_mode -function/0/vim.shared.loop.tty_reset_mode -function/0/vim.shared.loop.tty_get_winsize -function/0/vim.shared.loop.tty_set_vterm_state -function/0/vim.shared.loop.tty_get_vterm_state -function/0/vim.shared.loop.new_udp -function/0/vim.shared.loop.udp_get_send_queue_size -function/0/vim.shared.loop.udp_get_send_queue_count -function/0/vim.shared.loop.udp_open -function/0/vim.shared.loop.udp_bind -function/0/vim.shared.loop.udp_getsockname -function/0/vim.shared.loop.udp_set_membership -function/0/vim.shared.loop.udp_set_source_membership -function/0/vim.shared.loop.udp_set_multicast_loop -function/0/vim.shared.loop.udp_set_multicast_ttl -function/0/vim.shared.loop.udp_set_multicast_interface -function/0/vim.shared.loop.udp_set_broadcast -function/0/vim.shared.loop.udp_set_ttl -function/0/vim.shared.loop.udp_send -function/0/vim.shared.loop.fs_fchown -function/0/vim.shared.loop.fs_lchown -function/0/vim.shared.loop.fs_copyfile -function/0/vim.shared.loop.fs_opendir -function/0/vim.shared.loop.fs_readdir -function/0/vim.shared.loop.fs_closedir -function/0/vim.shared.loop.fs_statfs -function/0/vim.shared.loop.getaddrinfo -function/0/vim.shared.loop.getnameinfo -function/0/vim.shared.loop.chdir -function/0/vim.shared.loop.os_homedir -function/0/vim.shared.loop.os_tmpdir -function/0/vim.shared.loop.os_get_passwd -function/0/vim.shared.loop.cpu_info -function/0/vim.shared.loop.cwd -function/0/vim.shared.loop.exepath -function/0/vim.shared.loop.get_process_title -function/0/vim.shared.loop.get_constrained_memory -function/0/vim.shared.loop.get_total_memory -function/0/vim.shared.loop.get_free_memory -function/0/vim.shared.loop.getpid -function/2/vim.shared.defer_fn -function/2/vim.shared.deepcopy -function/5/vim.shared.region -function/2/vim.shared.paste -function/1/vim.shared.uri_from_fname -function/1/vim.shared.uri_to_fname -function/0/vim.shared.version -function/3/vim.shared.gsplit -function/1/vim.shared.funcref -function/0/vim.shared.fn.getchar -function/0/vim.shared.fn.nr2char -function/0/vim.shared.fn.maparg -function/0/vim.shared.fn.expand -function/0/vim.shared.fn.reg_recording -function/0/vim.shared.fn.reg_executing -function/0/vim.shared.fn.isdirectory -function/0/vim.shared.fn.getcmdtype -function/0/vim.shared.fn.pumvisible -function/0/vim.shared.fn.getcmdline -function/0/vim.shared.fn.getcmdpos -function/1/vim.shared._os_proc_children -function/1/vim.shared._os_proc_info -function/0/vim.shared.diff -function/1/vim.shared.tbl_islist -function/1/vim.shared.tbl_isempty -function/1/vim.shared.defaulttable -function/1/vim.shared.is_callable -function/1/vim.shared.validate -function/2/vim.shared.endswith -function/1/vim.shared.tbl_get -function/0/vim.shared.regex -function/0/vim.shared.str_utf_end -function/0/vim.shared.str_utf_start -function/2/vim.shared.deep_equal -function/0/vim.shared.str_utf_pos -function/1/vim.shared.tbl_keys -function/1/vim.shared.tbl_add_reverse_lookup -function/2/vim.shared.tbl_contains -function/1/vim.shared.tbl_extend -function/2/vim.shared.tbl_filter -function/2/vim.shared.tbl_map -function/1/vim.shared.tbl_values -string/vim.shared.inspect._DESCRIPTION -string/vim.shared.inspect._VERSION -function/2/vim.shared.inspect.inspect -string/vim.shared.inspect._LICENSE -string/vim.shared.inspect._URL -number/vim.shared.log.levels.INFO -number/vim.shared.log.levels.DEBUG -number/vim.shared.log.levels.TRACE -number/vim.shared.log.levels.WARN -number/vim.shared.log.levels.ERROR -number/vim.shared.log.levels.OFF -function/0/vim.shared._create_ts_parser -function/0/vim.shared._ts_add_language -function/0/vim.shared._ts_has_language -function/0/vim.shared._ts_remove_language -function/0/vim.shared._ts_inspect_language -function/0/vim.shared._ts_parse_query -function/0/vim.shared._ts_get_language_version -function/0/vim.shared._ts_get_minimum_language_version -function/0/vim.shared.stricmp -function/0/vim.shared.str_utfindex -function/0/vim.shared.str_byteindex -function/1/vim.shared.pesc -function/1/vim.shared.trim -function/3/vim.shared.list_slice -function/1/vim.shared.tbl_count -function/1/vim.shared.spairs -boolean/package.loaded.vim._meta -userdata/io.stdout -function/0/io.type -function/0/io.close -function/0/io.read -function/0/io.write -function/0/io.flush -function/0/io.lines -userdata/io.stderr -function/0/io.open -function/0/io.popen -function/0/io.tmpfile -function/0/io.input -function/0/io.output -userdata/io.stdin -function/1/luasnip.loaders.load_lazy_loaded -function/0/luasnip.loaders.cleanup -function/1/luasnip.loaders.reload_file -function/1/luasnip.loaders.edit_snippet_files -function/2/Comment.api.call -function/1/Comment.api.locked -number/Comment.api.toggle.cmode -number/Comment.api.comment.cmode -number/Comment.api.uncomment.cmode -boolean/luasnip.util._builtin_vars.builtin_ns.RELATIVE -boolean/luasnip.util._builtin_vars.builtin_ns.RANDOM -boolean/luasnip.util._builtin_vars.builtin_ns.BLOCK -boolean/luasnip.util._builtin_vars.builtin_ns.SELECT -boolean/luasnip.util._builtin_vars.builtin_ns.LS -boolean/luasnip.util._builtin_vars.builtin_ns.LINE -boolean/luasnip.util._builtin_vars.builtin_ns.CURRENT -boolean/luasnip.util._builtin_vars.builtin_ns.TM -boolean/luasnip.util._builtin_vars.builtin_ns.WORKSPACE -function/1/luasnip.util._builtin_vars.is_table -function/1/luasnip.util._builtin_vars.vars -function/1/luasnip.util._builtin_vars.init -number/cmp.matcher.WORD_BOUNDALY_ORDER_FACTOR -number/cmp.matcher.PREFIX_FACTOR -function/0/cmp.matcher.debug -function/5/cmp.matcher.find_match_region -function/3/cmp.matcher.fuzzy -number/cmp.matcher.NOT_FUZZY_FACTOR -function/3/cmp.matcher.match -function/0/package.loaded.cmp.config.default -function/0/luasnip.util.environ.fake -function/1/luasnip.util.environ.is_table -function/3/luasnip.util.environ.new -function/2/luasnip.util.environ.__index -function/3/luasnip.util.environ.override -function/2/luasnip.util.environ.env_namespace -function/1/luasnip.available -function/0/luasnip.expand_or_jump -function/1/luasnip.store_snippet_docstrings -function/1/luasnip.change_choice -function/0/luasnip.get_active_snip -function/2/luasnip.get_snippets -function/1/luasnip.exit_out_of_region -function/0/luasnip.unlink_current_if_deleted -function/1/luasnip.load_snippet_docstrings -function/0/luasnip.expand_repeat -function/1/luasnip.setup -function/0/luasnip.unlink_current -function/0/luasnip.expand_or_jumpable -function/2/luasnip.filetype_extend -function/1/luasnip.expand -function/2/luasnip.filetype_set -function/0/luasnip.cleanup -function/1/luasnip.refresh_notify -function/1/luasnip.jump_destination -function/0/luasnip.expandable -function/0/luasnip.setup_snip_env -function/0/luasnip.in_snippet -function/0/luasnip.get_snip_env -function/1/luasnip.get_id_snippet -function/3/luasnip.add_snippets -function/1/luasnip.clean_invalidated -function/0/luasnip.expand_or_locally_jumpable -function/1/luasnip.locally_jumpable -function/2/luasnip.snip_expand -function/2/luasnip.env_namespace -function/0/luasnip.get_snippet_filetypes -function/0/luasnip.choice_active -function/1/luasnip.jump -function/1/luasnip.jumpable -function/1/luasnip.set_choice -function/0/luasnip.expand_auto -function/0/luasnip.active_update_dependents -function/2/luasnip.lsp_expand -function/0/luasnip.get_current_choices -function/2/luasnip.util.util.lazy_table -function/0/luasnip.util.util.get_selection -function/0/luasnip.util.util.get_cursor_0ind -function/0/luasnip.util.util.buffer_comment_chars -function/0/luasnip.util.util.store_selection -function/0/luasnip.util.util.yes -function/1/luasnip.util.util.to_line_table -function/1/luasnip.util.util.find_outer_snippet -function/1/luasnip.util.util.redirect_filetypes -function/1/luasnip.util.util.id -function/1/luasnip.util.util.set_cursor_0ind -function/0/luasnip.util.util.get_snippet_filetypes -function/0/luasnip.util.util.get_current_line_to_cursor -function/2/luasnip.util.util.pos_sub -function/1/luasnip.util.util.pop_front -function/2/luasnip.util.util.dedent -function/3/luasnip.util.util.expand_tabs -function/1/luasnip.util.util.no_region_check_wrap -function/1/luasnip.util.util.reverse_lookup -function/0/luasnip.util.util.tab_width -function/2/luasnip.util.util.mark_pos_equal -function/0/luasnip.util.util.json_decode -function/0/luasnip.util.util.json_encode -function/1/luasnip.util.util.bytecol_to_utfcol -function/2/luasnip.util.util.indx_of -function/0/luasnip.util.util.nop -function/0/luasnip.util.util.no -function/2/luasnip.util.util.any_select -function/1/luasnip.util.util.key_sorted_pairs -function/1/luasnip.util.util.normal_move_on_insert -function/1/luasnip.util.util.insert_move_on -function/2/luasnip.util.util.multiline_equal -function/1/luasnip.util.util.deduplicate -function/2/luasnip.util.util.pos_add -function/2/luasnip.util.util.word_under_cursor -function/1/luasnip.util.util.line_chars_before -function/2/luasnip.util.util.string_wrap -function/1/luasnip.util.util.remove_n_before_cur -function/2/luasnip.util.util.indent -function/2/luasnip.util.util.pos_equal -function/2/luasnip.util.util.put -function/1/luasnip.util.util.to_string_table -function/1/luasnip.util.util.wrap_nodes -function/1/luasnip.util.util.move_to_mark -function/1/luasnip.config.setup -function/0/luasnip.config._setup -function/1/luasnip.config.set_config -function/1/vim.uri.uri_from_fname -function/1/vim.uri.uri_from_bufnr -function/1/vim.uri.uri_to_bufnr -function/1/vim.uri.uri_to_fname -function/2/which-key.register -function/1/which-key.setup -function/1/which-key.execute -function/0/which-key.load -function/0/which-key.reset -function/2/which-key.show_command -function/2/which-key.show -function/2/cmp.view.custom_entries_view.select_next_item -function/2/cmp.view.custom_entries_view.select_prev_item -number/cmp.view.custom_entries_view.ns -function/1/cmp.view.custom_entries_view.visible -function/1/cmp.view.custom_entries_view.is_direction_top_down -function/1/cmp.view.custom_entries_view.get_active_entry -function/1/cmp.view.custom_entries_view.get_entries -function/0/cmp.view.custom_entries_view.ready -function/1/cmp.view.custom_entries_view.abort -function/3/cmp.view.custom_entries_view._select -boolean/cmp.view.custom_entries_view._insert.pending -function/1/cmp.view.custom_entries_view.get_selected_entry -function/1/cmp.view.custom_entries_view.get_offset -function/1/cmp.view.custom_entries_view.close -function/3/cmp.view.custom_entries_view.open -function/1/cmp.view.custom_entries_view.draw -function/1/cmp.view.custom_entries_view.info -function/1/cmp.view.custom_entries_view.get_first_entry -function/1/cmp.view.custom_entries_view.on_change -function/0/cmp.view.custom_entries_view.new -function/3/which-key.tree.walk -function/4/which-key.tree.get -function/2/which-key.tree.path -function/2/which-key.tree.add -function/1/which-key.tree.new -function/0/os.execute -function/0/os.rename -function/0/os.tmpname -function/0/os.getenv -function/0/os.exit -function/0/os.clock -function/0/os.date -function/0/os.time -function/0/os.remove -function/0/os.setlocale -function/0/os.difftime -function/3/cmp_nvim_lsp.source.execute -function/3/cmp_nvim_lsp.source._get -function/3/cmp_nvim_lsp.source.complete -function/1/cmp_nvim_lsp.source.is_available -function/1/cmp_nvim_lsp.source.get_debug_name -function/4/cmp_nvim_lsp.source._request -function/1/cmp_nvim_lsp.source.get_position_encoding_kind -function/2/cmp_nvim_lsp.source.get_keyword_pattern -function/1/cmp_nvim_lsp.source.get_trigger_characters -function/3/cmp_nvim_lsp.source.resolve -function/1/cmp_nvim_lsp.source.new -number/vim.lsp._snippet.NodeType.TABSTOP -number/vim.lsp._snippet.NodeType.PLACEHOLDER -number/vim.lsp._snippet.NodeType.VARIABLE -number/vim.lsp._snippet.NodeType.CHOICE -number/vim.lsp._snippet.NodeType.TRANSFORM -number/vim.lsp._snippet.NodeType.FORMAT -number/vim.lsp._snippet.NodeType.TEXT -number/vim.lsp._snippet.NodeType.SNIPPET -function/1/vim.lsp._snippet.parse -function/1/which-key.util.error -function/1/which-key.util.parse_internal -function/1/which-key.util.is_empty -function/1/which-key.util.count -function/0/which-key.util.get_mode -function/1/which-key.util.warn -function/2/which-key.util.check_mode -function/1/which-key.util.t -function/1/which-key.util.parse_keys -function/2/which-key.keys.register -function/4/which-key.keys.process_motions -function/2/which-key.keys.is_hook -boolean/which-key.keys.hooked.n@ -boolean/which-key.keys.hooked.n^W -boolean/which-key.keys.hooked.n] -boolean/which-key.keys.hooked.n" -boolean/which-key.keys.hooked.n! -boolean/which-key.keys.hooked.nva -boolean/which-key.keys.hooked.n' -boolean/which-key.keys.hooked.n!a -boolean/which-key.keys.hooked.nya -boolean/which-key.keys.hooked.ng -boolean/which-key.keys.hooked.ny -boolean/which-key.keys.hooked.vg -boolean/which-key.keys.hooked.ng` -boolean/which-key.keys.hooked.n!i -boolean/which-key.keys.hooked.ng' -boolean/which-key.keys.hooked.nc -boolean/which-key.keys.hooked.ng~ -boolean/which-key.keys.hooked.vi -boolean/which-key.keys.hooked.v" -boolean/which-key.keys.hooked.ng~a -boolean/which-key.keys.hooked.i^R -boolean/which-key.keys.hooked.va -boolean/which-key.keys.hooked.ng~i -boolean/which-key.keys.hooked.v -boolean/which-key.keys.hooked.c^R -boolean/which-key.keys.hooked.n> -boolean/which-key.keys.hooked.nci -boolean/which-key.keys.hooked.nca -boolean/which-key.keys.hooked.ngua -boolean/which-key.keys.hooked.v[ -boolean/which-key.keys.hooked.nyi -boolean/which-key.keys.hooked.ngui -boolean/which-key.keys.hooked.n c -boolean/which-key.keys.hooked.v] -boolean/which-key.keys.hooked.nz -boolean/which-key.keys.hooked.n w -boolean/which-key.keys.hooked.n>i -boolean/which-key.keys.hooked.nzf -boolean/which-key.keys.hooked.n r -boolean/which-key.keys.hooked.nv -boolean/which-key.keys.hooked.nzfa -boolean/which-key.keys.hooked.ngUi -boolean/which-key.keys.hooked.ngUa -boolean/which-key.keys.hooked.nzfi -boolean/which-key.keys.hooked.ngU -boolean/which-key.keys.hooked.na -function/3/which-key.keys.hook_id -function/3/which-key.keys.is_hooked -function/3/which-key.keys.hook_del -function/4/which-key.keys.hook_add -function/5/which-key.keys.map -string/which-key.keys.mappings.n35.tree.root.prefix_n -string/which-key.keys.mappings.n35.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n35.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n35.tree.root.mapping.group -string/which-key.keys.mappings.n35.tree.root.prefix_i -string/which-key.keys.mappings.n35.mode -number/which-key.keys.mappings.n35.buf -string/which-key.keys.mappings.o.tree.root.prefix_n -string/which-key.keys.mappings.o.tree.root.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.mapping.prefix -boolean/which-key.keys.mappings.o.tree.root.mapping.group -string/which-key.keys.mappings.o.tree.root.children.^.prefix_n -string/which-key.keys.mappings.o.tree.root.children.^.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.^.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.^.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.^.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.^.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.^.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.^.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.^.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.^.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.^.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.^.prefix_i -string/which-key.keys.mappings.o.tree.root.children.F.prefix_n -string/which-key.keys.mappings.o.tree.root.children.F.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.F.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.F.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.F.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.F.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.F.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.F.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.F.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.F.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.F.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.F.prefix_i -string/which-key.keys.mappings.o.tree.root.children.j.prefix_n -string/which-key.keys.mappings.o.tree.root.children.j.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.j.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.j.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.j.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.j.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.j.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.j.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.j.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.j.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.j.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.j.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.mapping.name -boolean/which-key.keys.mappings.o.tree.root.children.a.mapping.preset -boolean/which-key.keys.mappings.o.tree.root.children.a.mapping.group -string/which-key.keys.mappings.o.tree.root.children.a.mapping.label -string/which-key.keys.mappings.o.tree.root.children.a.mapping.mode -boolean/which-key.keys.mappings.o.tree.root.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.o.tree.root.children.a.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.).prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.).mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.).prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.}.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.}.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.}.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.<.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.<.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.<.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.>.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.>.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.>.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.b.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.b.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.b.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.{.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.{.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.{.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.s.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.s.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.s.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.(.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.(.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.(.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.t.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.t.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.t.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.`.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.`.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.`.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.B.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.B.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.B.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.w.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.w.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.w.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.".prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.".mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.".prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.].prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.].mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.].prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.'.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.'.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.'.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.[.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.[.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.[.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.W.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.W.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.W.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.children.p.prefix_n -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.a.children.p.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.a.children.p.prefix_i -string/which-key.keys.mappings.o.tree.root.children.a.prefix_i -string/which-key.keys.mappings.o.tree.root.children.}.prefix_n -string/which-key.keys.mappings.o.tree.root.children.}.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.}.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.}.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.}.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.}.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.}.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.}.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.}.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.}.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.}.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.}.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.mapping.name -boolean/which-key.keys.mappings.o.tree.root.children.i.mapping.preset -boolean/which-key.keys.mappings.o.tree.root.children.i.mapping.group -string/which-key.keys.mappings.o.tree.root.children.i.mapping.label -string/which-key.keys.mappings.o.tree.root.children.i.mapping.mode -boolean/which-key.keys.mappings.o.tree.root.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.o.tree.root.children.i.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.).prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.).mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.).prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.}.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.}.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.}.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.<.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.<.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.<.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.>.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.>.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.>.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.b.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.b.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.b.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.{.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.{.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.{.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.s.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.s.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.s.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.(.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.(.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.(.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.t.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.t.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.t.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.`.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.`.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.`.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.W.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.W.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.W.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.w.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.w.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.w.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.".prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.".mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.".prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.].prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.].mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.].prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.'.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.'.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.'.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.[.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.[.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.[.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.B.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.B.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.B.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.children.p.prefix_n -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.i.children.p.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.i.children.p.prefix_i -string/which-key.keys.mappings.o.tree.root.children.i.prefix_i -string/which-key.keys.mappings.o.tree.root.children.b.prefix_n -string/which-key.keys.mappings.o.tree.root.children.b.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.b.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.b.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.b.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.b.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.b.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.b.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.b.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.b.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.b.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.b.prefix_i -string/which-key.keys.mappings.o.tree.root.children.k.prefix_n -string/which-key.keys.mappings.o.tree.root.children.k.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.k.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.k.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.k.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.k.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.k.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.k.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.k.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.k.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.k.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.k.prefix_i -string/which-key.keys.mappings.o.tree.root.children.l.prefix_n -string/which-key.keys.mappings.o.tree.root.children.l.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.l.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.l.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.l.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.l.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.l.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.l.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.l.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.l.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.l.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.l.prefix_i -string/which-key.keys.mappings.o.tree.root.children.h.prefix_n -string/which-key.keys.mappings.o.tree.root.children.h.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.h.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.h.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.h.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.h.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.h.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.h.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.h.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.h.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.h.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.h.prefix_i -string/which-key.keys.mappings.o.tree.root.children.g.prefix_n -string/which-key.keys.mappings.o.tree.root.children.g.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.g.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.g.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.g.mapping.prefix -boolean/which-key.keys.mappings.o.tree.root.children.g.mapping.group -string/which-key.keys.mappings.o.tree.root.children.g.children.e.prefix_n -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.g.children.e.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.g.children.e.prefix_i -string/which-key.keys.mappings.o.tree.root.children.g.children.g.prefix_n -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.keys.internal.2 -boolean/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.g.children.g.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.g.children.g.prefix_i -string/which-key.keys.mappings.o.tree.root.children.g.children.%.prefix_n -string/which-key.keys.mappings.o.tree.root.children.g.children.%.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.g.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.g.children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.g.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.g.children.%.mapping.keys.internal.2 -string/which-key.keys.mappings.o.tree.root.children.g.children.%.mapping.id -string/which-key.keys.mappings.o.tree.root.children.g.children.%.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.g.children.%.mapping.cmd -string/which-key.keys.mappings.o.tree.root.children.g.children.%.prefix_i -string/which-key.keys.mappings.o.tree.root.children.g.prefix_i -string/which-key.keys.mappings.o.tree.root.children.f.prefix_n -string/which-key.keys.mappings.o.tree.root.children.f.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.f.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.f.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.f.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.f.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.f.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.f.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.f.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.f.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.f.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.f.prefix_i -string/which-key.keys.mappings.o.tree.root.children.e.prefix_n -string/which-key.keys.mappings.o.tree.root.children.e.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.e.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.e.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.e.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.e.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.e.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.e.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.e.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.e.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.e.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.e.prefix_i -string/which-key.keys.mappings.o.tree.root.children.t.prefix_n -string/which-key.keys.mappings.o.tree.root.children.t.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.t.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.t.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.t.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.t.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.t.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.t.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.t.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.t.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.t.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.t.prefix_i -string/which-key.keys.mappings.o.tree.root.children.%.prefix_n -string/which-key.keys.mappings.o.tree.root.children.%.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.%.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.%.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.%.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.%.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.%.mapping.mode -boolean/which-key.keys.mappings.o.tree.root.children.%.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.%.mapping.id -string/which-key.keys.mappings.o.tree.root.children.%.mapping.label -string/which-key.keys.mappings.o.tree.root.children.%.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.%.mapping.cmd -string/which-key.keys.mappings.o.tree.root.children.%.prefix_i -string/which-key.keys.mappings.o.tree.root.children.{.prefix_n -string/which-key.keys.mappings.o.tree.root.children.{.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.{.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.{.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.{.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.{.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.{.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.{.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.{.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.{.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.{.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.{.prefix_i -string/which-key.keys.mappings.o.tree.root.children.w.prefix_n -string/which-key.keys.mappings.o.tree.root.children.w.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.w.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.w.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.w.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.w.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.w.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.w.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.w.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.w.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.w.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.w.prefix_i -string/which-key.keys.mappings.o.tree.root.children.T.prefix_n -string/which-key.keys.mappings.o.tree.root.children.T.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.T.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.T.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.T.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.T.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.T.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.T.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.T.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.T.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.T.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.T.prefix_i -string/which-key.keys.mappings.o.tree.root.children.].prefix_n -string/which-key.keys.mappings.o.tree.root.children.].mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.].mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.].mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.].mapping.prefix -boolean/which-key.keys.mappings.o.tree.root.children.].mapping.group -string/which-key.keys.mappings.o.tree.root.children.].children.%.prefix_n -string/which-key.keys.mappings.o.tree.root.children.].children.%.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.].children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.].children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.].children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.].children.%.mapping.keys.internal.2 -string/which-key.keys.mappings.o.tree.root.children.].children.%.mapping.id -string/which-key.keys.mappings.o.tree.root.children.].children.%.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.].children.%.mapping.cmd -string/which-key.keys.mappings.o.tree.root.children.].children.%.prefix_i -string/which-key.keys.mappings.o.tree.root.children.].prefix_i -string/which-key.keys.mappings.o.tree.root.children.0.prefix_n -string/which-key.keys.mappings.o.tree.root.children.0.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.0.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.0.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.0.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.0.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.0.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.0.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.0.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.0.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.0.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.0.prefix_i -string/which-key.keys.mappings.o.tree.root.children.[.prefix_n -string/which-key.keys.mappings.o.tree.root.children.[.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.[.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.[.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.[.mapping.prefix -boolean/which-key.keys.mappings.o.tree.root.children.[.mapping.group -string/which-key.keys.mappings.o.tree.root.children.[.children.%.prefix_n -string/which-key.keys.mappings.o.tree.root.children.[.children.%.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.[.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.[.children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.o.tree.root.children.[.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.o.tree.root.children.[.children.%.mapping.keys.internal.2 -string/which-key.keys.mappings.o.tree.root.children.[.children.%.mapping.id -string/which-key.keys.mappings.o.tree.root.children.[.children.%.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.[.children.%.mapping.cmd -string/which-key.keys.mappings.o.tree.root.children.[.children.%.prefix_i -string/which-key.keys.mappings.o.tree.root.children.[.prefix_i -string/which-key.keys.mappings.o.tree.root.children.G.prefix_n -string/which-key.keys.mappings.o.tree.root.children.G.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.G.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.G.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.G.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.G.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.G.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.G.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.G.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.G.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.G.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.G.prefix_i -string/which-key.keys.mappings.o.tree.root.children.$.prefix_n -string/which-key.keys.mappings.o.tree.root.children.$.mapping.keys.keys -string/which-key.keys.mappings.o.tree.root.children.$.mapping.keys.notation.1 -string/which-key.keys.mappings.o.tree.root.children.$.mapping.keys.internal.1 -boolean/which-key.keys.mappings.o.tree.root.children.$.mapping.preset -string/which-key.keys.mappings.o.tree.root.children.$.mapping.mode -string/which-key.keys.mappings.o.tree.root.children.$.mapping.label -boolean/which-key.keys.mappings.o.tree.root.children.$.mapping.opts.silent -string/which-key.keys.mappings.o.tree.root.children.$.mapping.opts.desc -boolean/which-key.keys.mappings.o.tree.root.children.$.mapping.opts.noremap -string/which-key.keys.mappings.o.tree.root.children.$.mapping.prefix -string/which-key.keys.mappings.o.tree.root.children.$.prefix_i -string/which-key.keys.mappings.o.tree.root.prefix_i -string/which-key.keys.mappings.o.mode -string/which-key.keys.mappings.o41.tree.root.prefix_n -string/which-key.keys.mappings.o41.tree.root.mapping.keys.keys -string/which-key.keys.mappings.o41.tree.root.mapping.prefix -boolean/which-key.keys.mappings.o41.tree.root.mapping.group -string/which-key.keys.mappings.o41.tree.root.prefix_i -string/which-key.keys.mappings.o41.mode -number/which-key.keys.mappings.o41.buf -string/which-key.keys.mappings.n22.tree.root.prefix_n -string/which-key.keys.mappings.n22.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n22.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n22.tree.root.mapping.group -string/which-key.keys.mappings.n22.tree.root.prefix_i -string/which-key.keys.mappings.n22.mode -number/which-key.keys.mappings.n22.buf -string/which-key.keys.mappings.n11.tree.root.prefix_n -string/which-key.keys.mappings.n11.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n11.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n11.tree.root.mapping.group -string/which-key.keys.mappings.n11.tree.root.prefix_i -string/which-key.keys.mappings.n11.mode -number/which-key.keys.mappings.n11.buf -string/which-key.keys.mappings.n59.tree.root.prefix_n -string/which-key.keys.mappings.n59.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n59.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n59.tree.root.mapping.group -string/which-key.keys.mappings.n59.tree.root.prefix_i -string/which-key.keys.mappings.n59.mode -number/which-key.keys.mappings.n59.buf -string/which-key.keys.mappings.v.tree.root.prefix_n -string/which-key.keys.mappings.v.tree.root.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.mapping.prefix -boolean/which-key.keys.mappings.v.tree.root.mapping.group -string/which-key.keys.mappings.v.tree.root.children.#.prefix_n -string/which-key.keys.mappings.v.tree.root.children.#.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.#.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.#.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.#.mapping.id -string/which-key.keys.mappings.v.tree.root.children.#.mapping.desc -string/which-key.keys.mappings.v.tree.root.children.#.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.#.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.#.prefix_i -string/which-key.keys.mappings.v.tree.root.children.<80>kB.prefix_n -string/which-key.keys.mappings.v.tree.root.children.<80>kB.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.<80>kB.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.<80>kB.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.<80>kB.mapping.desc -string/which-key.keys.mappings.v.tree.root.children.<80>kB.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.<80>kB.mapping.id -string/which-key.keys.mappings.v.tree.root.children.<80>kB.prefix_i -string/which-key.keys.mappings.v.tree.root.children.*.prefix_n -string/which-key.keys.mappings.v.tree.root.children.*.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.*.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.*.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.*.mapping.id -string/which-key.keys.mappings.v.tree.root.children.*.mapping.desc -string/which-key.keys.mappings.v.tree.root.children.*.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.*.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.*.prefix_i -string/which-key.keys.mappings.v.tree.root.children.a.prefix_n -string/which-key.keys.mappings.v.tree.root.children.a.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.a.mapping.mode -string/which-key.keys.mappings.v.tree.root.children.a.mapping.name -boolean/which-key.keys.mappings.v.tree.root.children.a.mapping.preset -boolean/which-key.keys.mappings.v.tree.root.children.a.mapping.group -string/which-key.keys.mappings.v.tree.root.children.a.mapping.label -string/which-key.keys.mappings.v.tree.root.children.a.mapping.prefix -boolean/which-key.keys.mappings.v.tree.root.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.v.tree.root.children.a.mapping.opts.noremap -string/which-key.keys.mappings.v.tree.root.children.a.children.%.prefix_n -string/which-key.keys.mappings.v.tree.root.children.a.children.%.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.a.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.a.children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.v.tree.root.children.a.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.a.children.%.mapping.keys.internal.2 -string/which-key.keys.mappings.v.tree.root.children.a.children.%.mapping.id -string/which-key.keys.mappings.v.tree.root.children.a.children.%.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.a.children.%.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.a.children.%.prefix_i -string/which-key.keys.mappings.v.tree.root.children.a.prefix_i -string/which-key.keys.mappings.v.tree.root.children.%.prefix_n -string/which-key.keys.mappings.v.tree.root.children.%.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.%.mapping.id -string/which-key.keys.mappings.v.tree.root.children.%.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.%.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.%.prefix_i -string/which-key.keys.mappings.v.tree.root.children. .prefix_n -string/which-key.keys.mappings.v.tree.root.children. .mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children. .mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children. .mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children. .mapping.prefix -boolean/which-key.keys.mappings.v.tree.root.children. .mapping.group -string/which-key.keys.mappings.v.tree.root.children. .children./.prefix_n -string/which-key.keys.mappings.v.tree.root.children. .children./.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children. .children./.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children. .children./.mapping.keys.notation.2 -string/which-key.keys.mappings.v.tree.root.children. .children./.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children. .children./.mapping.keys.internal.2 -string/which-key.keys.mappings.v.tree.root.children. .children./.mapping.id -string/which-key.keys.mappings.v.tree.root.children. .children./.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children. .children./.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children. .children./.prefix_i -string/which-key.keys.mappings.v.tree.root.children. .prefix_i -string/which-key.keys.mappings.v.tree.root.children.".prefix_n -string/which-key.keys.mappings.v.tree.root.children.".mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.".mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.".mapping.keys.internal.1 -boolean/which-key.keys.mappings.v.tree.root.children.".mapping.group -string/which-key.keys.mappings.v.tree.root.children.".mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.".mapping.plugin -string/which-key.keys.mappings.v.tree.root.children.".mapping.label -boolean/which-key.keys.mappings.v.tree.root.children.".mapping.opts.silent -string/which-key.keys.mappings.v.tree.root.children.".mapping.opts.desc -boolean/which-key.keys.mappings.v.tree.root.children.".mapping.opts.noremap -string/which-key.keys.mappings.v.tree.root.children.".mapping.mode -string/which-key.keys.mappings.v.tree.root.children.".prefix_i -string/which-key.keys.mappings.v.tree.root.children.i.prefix_n -string/which-key.keys.mappings.v.tree.root.children.i.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.i.mapping.mode -string/which-key.keys.mappings.v.tree.root.children.i.mapping.name -boolean/which-key.keys.mappings.v.tree.root.children.i.mapping.preset -boolean/which-key.keys.mappings.v.tree.root.children.i.mapping.group -string/which-key.keys.mappings.v.tree.root.children.i.mapping.label -string/which-key.keys.mappings.v.tree.root.children.i.mapping.prefix -boolean/which-key.keys.mappings.v.tree.root.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.v.tree.root.children.i.mapping.opts.noremap -string/which-key.keys.mappings.v.tree.root.children.i.prefix_i -string/which-key.keys.mappings.v.tree.root.children.^I.prefix_n -string/which-key.keys.mappings.v.tree.root.children.^I.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.^I.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.^I.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.^I.mapping.desc -string/which-key.keys.mappings.v.tree.root.children.^I.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.^I.mapping.id -string/which-key.keys.mappings.v.tree.root.children.^I.prefix_i -string/which-key.keys.mappings.v.tree.root.children.[.prefix_n -string/which-key.keys.mappings.v.tree.root.children.[.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.[.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.[.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.[.mapping.prefix -boolean/which-key.keys.mappings.v.tree.root.children.[.mapping.group -string/which-key.keys.mappings.v.tree.root.children.[.children.%.prefix_n -string/which-key.keys.mappings.v.tree.root.children.[.children.%.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.[.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.[.children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.v.tree.root.children.[.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.[.children.%.mapping.keys.internal.2 -string/which-key.keys.mappings.v.tree.root.children.[.children.%.mapping.id -string/which-key.keys.mappings.v.tree.root.children.[.children.%.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.[.children.%.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.[.children.%.prefix_i -string/which-key.keys.mappings.v.tree.root.children.[.prefix_i -string/which-key.keys.mappings.v.tree.root.children.g.prefix_n -string/which-key.keys.mappings.v.tree.root.children.g.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.g.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.g.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.g.mapping.prefix -boolean/which-key.keys.mappings.v.tree.root.children.g.mapping.group -string/which-key.keys.mappings.v.tree.root.children.g.children.c.prefix_n -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.keys.notation.2 -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.keys.internal.2 -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.id -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.desc -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.g.children.c.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.g.children.c.prefix_i -string/which-key.keys.mappings.v.tree.root.children.g.children.%.prefix_n -string/which-key.keys.mappings.v.tree.root.children.g.children.%.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.g.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.g.children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.v.tree.root.children.g.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.g.children.%.mapping.keys.internal.2 -string/which-key.keys.mappings.v.tree.root.children.g.children.%.mapping.id -string/which-key.keys.mappings.v.tree.root.children.g.children.%.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.g.children.%.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.g.children.%.prefix_i -string/which-key.keys.mappings.v.tree.root.children.g.children.b.prefix_n -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.keys.notation.2 -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.keys.internal.2 -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.id -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.desc -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.g.children.b.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.g.children.b.prefix_i -string/which-key.keys.mappings.v.tree.root.children.g.prefix_i -string/which-key.keys.mappings.v.tree.root.children.].prefix_n -string/which-key.keys.mappings.v.tree.root.children.].mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.].mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.].mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.].mapping.prefix -boolean/which-key.keys.mappings.v.tree.root.children.].mapping.group -string/which-key.keys.mappings.v.tree.root.children.].children.%.prefix_n -string/which-key.keys.mappings.v.tree.root.children.].children.%.mapping.keys.keys -string/which-key.keys.mappings.v.tree.root.children.].children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.v.tree.root.children.].children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.v.tree.root.children.].children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.v.tree.root.children.].children.%.mapping.keys.internal.2 -string/which-key.keys.mappings.v.tree.root.children.].children.%.mapping.id -string/which-key.keys.mappings.v.tree.root.children.].children.%.mapping.prefix -string/which-key.keys.mappings.v.tree.root.children.].children.%.mapping.cmd -string/which-key.keys.mappings.v.tree.root.children.].children.%.prefix_i -string/which-key.keys.mappings.v.tree.root.children.].prefix_i -string/which-key.keys.mappings.v.tree.root.prefix_i -string/which-key.keys.mappings.v.mode -string/which-key.keys.mappings.n25.tree.root.prefix_n -string/which-key.keys.mappings.n25.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n25.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n25.tree.root.mapping.group -string/which-key.keys.mappings.n25.tree.root.prefix_i -string/which-key.keys.mappings.n25.mode -number/which-key.keys.mappings.n25.buf -string/which-key.keys.mappings.n54.tree.root.prefix_n -string/which-key.keys.mappings.n54.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n54.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n54.tree.root.mapping.group -string/which-key.keys.mappings.n54.tree.root.prefix_i -string/which-key.keys.mappings.n54.mode -number/which-key.keys.mappings.n54.buf -string/which-key.keys.mappings.n64.tree.root.prefix_n -string/which-key.keys.mappings.n64.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n64.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n64.tree.root.mapping.group -string/which-key.keys.mappings.n64.tree.root.prefix_i -string/which-key.keys.mappings.n64.mode -number/which-key.keys.mappings.n64.buf -string/which-key.keys.mappings.n50.tree.root.prefix_n -string/which-key.keys.mappings.n50.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n50.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n50.tree.root.mapping.group -string/which-key.keys.mappings.n50.tree.root.prefix_i -string/which-key.keys.mappings.n50.mode -number/which-key.keys.mappings.n50.buf -string/which-key.keys.mappings.n42.tree.root.prefix_n -string/which-key.keys.mappings.n42.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n42.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n42.tree.root.mapping.group -string/which-key.keys.mappings.n42.tree.root.prefix_i -string/which-key.keys.mappings.n42.mode -number/which-key.keys.mappings.n42.buf -string/which-key.keys.mappings.c.tree.root.prefix_n -string/which-key.keys.mappings.c.tree.root.mapping.keys.keys -string/which-key.keys.mappings.c.tree.root.mapping.prefix -boolean/which-key.keys.mappings.c.tree.root.mapping.group -string/which-key.keys.mappings.c.tree.root.children.^R.prefix_n -string/which-key.keys.mappings.c.tree.root.children.^R.mapping.keys.keys -string/which-key.keys.mappings.c.tree.root.children.^R.mapping.keys.notation.1 -string/which-key.keys.mappings.c.tree.root.children.^R.mapping.keys.internal.1 -boolean/which-key.keys.mappings.c.tree.root.children.^R.mapping.group -string/which-key.keys.mappings.c.tree.root.children.^R.mapping.prefix -string/which-key.keys.mappings.c.tree.root.children.^R.mapping.plugin -string/which-key.keys.mappings.c.tree.root.children.^R.mapping.label -boolean/which-key.keys.mappings.c.tree.root.children.^R.mapping.opts.silent -string/which-key.keys.mappings.c.tree.root.children.^R.mapping.opts.desc -boolean/which-key.keys.mappings.c.tree.root.children.^R.mapping.opts.noremap -string/which-key.keys.mappings.c.tree.root.children.^R.mapping.mode -string/which-key.keys.mappings.c.tree.root.children.^R.prefix_i -string/which-key.keys.mappings.c.tree.root.prefix_i -string/which-key.keys.mappings.c.mode -string/which-key.keys.mappings.o26.tree.root.prefix_n -string/which-key.keys.mappings.o26.tree.root.mapping.keys.keys -string/which-key.keys.mappings.o26.tree.root.mapping.prefix -boolean/which-key.keys.mappings.o26.tree.root.mapping.group -string/which-key.keys.mappings.o26.tree.root.prefix_i -string/which-key.keys.mappings.o26.mode -number/which-key.keys.mappings.o26.buf -string/which-key.keys.mappings.n26.tree.root.prefix_n -string/which-key.keys.mappings.n26.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n26.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n26.tree.root.mapping.group -string/which-key.keys.mappings.n26.tree.root.prefix_i -string/which-key.keys.mappings.n26.mode -number/which-key.keys.mappings.n26.buf -string/which-key.keys.mappings.n41.tree.root.prefix_n -string/which-key.keys.mappings.n41.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n41.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n41.tree.root.mapping.group -string/which-key.keys.mappings.n41.tree.root.prefix_i -string/which-key.keys.mappings.n41.mode -number/which-key.keys.mappings.n41.buf -string/which-key.keys.mappings.n20.tree.root.prefix_n -string/which-key.keys.mappings.n20.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n20.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n20.tree.root.mapping.group -string/which-key.keys.mappings.n20.tree.root.prefix_i -string/which-key.keys.mappings.n20.mode -number/which-key.keys.mappings.n20.buf -string/which-key.keys.mappings.n37.tree.root.prefix_n -string/which-key.keys.mappings.n37.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n37.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n37.tree.root.mapping.group -string/which-key.keys.mappings.n37.tree.root.prefix_i -string/which-key.keys.mappings.n37.mode -number/which-key.keys.mappings.n37.buf -string/which-key.keys.mappings.n1.tree.root.prefix_n -string/which-key.keys.mappings.n1.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n1.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n1.tree.root.mapping.group -string/which-key.keys.mappings.n1.tree.root.prefix_i -string/which-key.keys.mappings.n1.mode -number/which-key.keys.mappings.n1.buf -string/which-key.keys.mappings.o1.tree.root.prefix_n -string/which-key.keys.mappings.o1.tree.root.mapping.keys.keys -string/which-key.keys.mappings.o1.tree.root.mapping.prefix -boolean/which-key.keys.mappings.o1.tree.root.mapping.group -string/which-key.keys.mappings.o1.tree.root.prefix_i -string/which-key.keys.mappings.o1.mode -number/which-key.keys.mappings.o1.buf -string/which-key.keys.mappings.n47.tree.root.prefix_n -string/which-key.keys.mappings.n47.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n47.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n47.tree.root.mapping.group -string/which-key.keys.mappings.n47.tree.root.prefix_i -string/which-key.keys.mappings.n47.mode -number/which-key.keys.mappings.n47.buf -string/which-key.keys.mappings.n.tree.root.prefix_n -string/which-key.keys.mappings.n.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.mapping.group -string/which-key.keys.mappings.n.tree.root.children.^L.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^L.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^L.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^L.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^L.mapping.id -string/which-key.keys.mappings.n.tree.root.children.^L.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.^L.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^L.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.^L.prefix_i -string/which-key.keys.mappings.n.tree.root.children.j.prefix_n -string/which-key.keys.mappings.n.tree.root.children.j.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.j.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.j.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.j.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.j.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.j.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.j.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.j.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.j.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.j.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.j.prefix_i -string/which-key.keys.mappings.n.tree.root.children.!.prefix_n -string/which-key.keys.mappings.n.tree.root.children.!.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.!.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.!.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.!.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.!.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.!.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.!.mapping.group -string/which-key.keys.mappings.n.tree.root.children.!.mapping.label -string/which-key.keys.mappings.n.tree.root.children.!.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.!.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.!.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.!.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.!.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.!.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.!.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.!.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.!.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.!.prefix_i -string/which-key.keys.mappings.n.tree.root.children.H.prefix_n -string/which-key.keys.mappings.n.tree.root.children.H.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.H.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.H.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.H.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.H.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.H.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.H.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.H.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.H.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.H.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.H.prefix_i -string/which-key.keys.mappings.n.tree.root.children.<.prefix_n -string/which-key.keys.mappings.n.tree.root.children.<.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.<.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.<.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.<.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.<.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.<.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.<.mapping.group -string/which-key.keys.mappings.n.tree.root.children.<.mapping.label -string/which-key.keys.mappings.n.tree.root.children.<.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.<.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.<.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.<.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.<.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.<.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.<.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.<.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.<.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.<.prefix_i -string/which-key.keys.mappings.n.tree.root.children.>.prefix_n -string/which-key.keys.mappings.n.tree.root.children.>.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.>.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.>.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.>.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.>.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.>.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.>.mapping.group -string/which-key.keys.mappings.n.tree.root.children.>.mapping.label -string/which-key.keys.mappings.n.tree.root.children.>.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.>.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.>.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.>.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.>.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.>.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.>.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.>.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.>.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.>.prefix_i -string/which-key.keys.mappings.n.tree.root.children.b.prefix_n -string/which-key.keys.mappings.n.tree.root.children.b.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.b.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.b.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.b.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.b.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.b.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.b.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.b.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.b.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.b.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.b.prefix_i -string/which-key.keys.mappings.n.tree.root.children.l.prefix_n -string/which-key.keys.mappings.n.tree.root.children.l.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.l.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.l.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.l.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.l.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.l.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.l.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.l.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.l.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.l.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.l.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.z.mapping.group -string/which-key.keys.mappings.n.tree.root.children.z.children.o.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.o.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.o.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.x.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.x.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.x.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.H.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.H.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.H.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.r.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.r.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.r.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.v.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.v.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.v.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.w.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.w.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.w.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.b.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.b.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.b.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.=.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.=.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.=.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.s.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.s.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.s.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.R.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.R.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.R.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.z.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.z.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.z.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.c.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.c.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.c.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.e.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.e.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.e.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.m.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.m.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.m.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.C.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.C.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.C.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.L.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.L.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.L.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.f.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.group -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.label -string/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.f.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.f.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.g.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.g.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.g.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.M.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.M.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.M.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.A.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.A.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.A.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.O.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.O.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.O.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.t.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.t.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.t.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.z.children.a.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.z.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.z.prefix_i -string/which-key.keys.mappings.n.tree.root.children.t.prefix_n -string/which-key.keys.mappings.n.tree.root.children.t.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.t.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.t.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.t.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.t.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.t.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.t.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.t.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.t.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.t.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.t.prefix_i -string/which-key.keys.mappings.n.tree.root.children.`.prefix_n -string/which-key.keys.mappings.n.tree.root.children.`.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.`.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.`.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.`.mapping.group -string/which-key.keys.mappings.n.tree.root.children.`.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.`.mapping.plugin -string/which-key.keys.mappings.n.tree.root.children.`.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.`.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.`.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.`.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.`.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.`.prefix_i -string/which-key.keys.mappings.n.tree.root.children.L.prefix_n -string/which-key.keys.mappings.n.tree.root.children.L.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.L.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.L.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.L.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.L.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.L.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.L.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.L.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.L.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.L.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.L.prefix_i -string/which-key.keys.mappings.n.tree.root.children.G.prefix_n -string/which-key.keys.mappings.n.tree.root.children.G.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.G.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.G.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.G.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.G.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.G.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.G.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.G.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.G.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.G.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.G.prefix_i -string/which-key.keys.mappings.n.tree.root.children.T.prefix_n -string/which-key.keys.mappings.n.tree.root.children.T.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.T.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.T.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.T.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.T.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.T.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.T.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.T.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.T.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.T.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.T.prefix_i -string/which-key.keys.mappings.n.tree.root.children.0.prefix_n -string/which-key.keys.mappings.n.tree.root.children.0.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.0.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.0.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.0.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.0.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.0.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.0.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.0.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.0.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.0.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.0.prefix_i -string/which-key.keys.mappings.n.tree.root.children.d.prefix_n -string/which-key.keys.mappings.n.tree.root.children.d.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.d.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.d.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.d.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.d.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.d.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.d.mapping.group -string/which-key.keys.mappings.n.tree.root.children.d.mapping.label -string/which-key.keys.mappings.n.tree.root.children.d.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.d.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.d.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.d.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.d.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.d.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.d.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.d.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.d.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.d.prefix_i -string/which-key.keys.mappings.n.tree.root.children.&.prefix_n -string/which-key.keys.mappings.n.tree.root.children.&.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.&.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.&.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.&.mapping.id -string/which-key.keys.mappings.n.tree.root.children.&.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.&.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.&.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.&.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.^.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^.prefix_i -string/which-key.keys.mappings.n.tree.root.children.F.prefix_n -string/which-key.keys.mappings.n.tree.root.children.F.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.F.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.F.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.F.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.F.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.F.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.F.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.F.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.F.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.F.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.F.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.@.mapping.group -string/which-key.keys.mappings.n.tree.root.children.@.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.@.mapping.plugin -string/which-key.keys.mappings.n.tree.root.children.@.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.@.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.@.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.@.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.@.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.@.children.d.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.d.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.d.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.o.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.o.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.o.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.4.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.4.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.4.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.5.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.5.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.5.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.*.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.*.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.*.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.a.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.7.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.7.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.7.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.8.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.8.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.8.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.2.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.2.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.2.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.i.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.9.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.9.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.9.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.6.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.6.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.6.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.+.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.+.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.+.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.b.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.b.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.b.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.k.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.k.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.k.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.l.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.l.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.l.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.1.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.1.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.1.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children...prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children...mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children...mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children...prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.-.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.-.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.-.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.0.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.0.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.0.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.y.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.y.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.y.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.%.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.%.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.%.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.q.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.q.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.q.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.w.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.w.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.w.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.g.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.g.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.g.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.".prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.".mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.".prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children./.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children./.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children./.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.3.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.3.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.3.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.:.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.:.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.:.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.children.j.prefix_n -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.value -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.label -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.key -string/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.prefix -number/which-key.keys.mappings.n.tree.root.children.@.children.j.mapping.order -string/which-key.keys.mappings.n.tree.root.children.@.children.j.prefix_i -string/which-key.keys.mappings.n.tree.root.children.@.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^H.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.id -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^H.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.opts.desc -function/0/which-key.keys.mappings.n.tree.root.children.^H.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children.^H.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^H.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.^H.prefix_i -string/which-key.keys.mappings.n.tree.root.children.K.prefix_n -string/which-key.keys.mappings.n.tree.root.children.K.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.K.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.K.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.K.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.K.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.K.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.K.mapping.id -string/which-key.keys.mappings.n.tree.root.children.K.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.K.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.K.mapping.opts.desc -function/0/which-key.keys.mappings.n.tree.root.children.K.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children.K.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.K.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.K.prefix_i -string/which-key.keys.mappings.n.tree.root.children.}.prefix_n -string/which-key.keys.mappings.n.tree.root.children.}.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.}.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.}.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.}.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.}.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.}.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.}.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.}.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.}.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.}.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.}.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^N.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^N.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^N.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^N.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^N.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^N.mapping.id -string/which-key.keys.mappings.n.tree.root.children.^N.prefix_i -string/which-key.keys.mappings.n.tree.root.children.h.prefix_n -string/which-key.keys.mappings.n.tree.root.children.h.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.h.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.h.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.h.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.h.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.h.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.h.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.h.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.h.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.h.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.h.prefix_i -string/which-key.keys.mappings.n.tree.root.children.f.prefix_n -string/which-key.keys.mappings.n.tree.root.children.f.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.f.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.f.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.f.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.f.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.f.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.f.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.f.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.f.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.f.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.f.prefix_i -string/which-key.keys.mappings.n.tree.root.children.{.prefix_n -string/which-key.keys.mappings.n.tree.root.children.{.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.{.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.{.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.{.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.{.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.{.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.{.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.{.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.{.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.{.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.{.prefix_i -string/which-key.keys.mappings.n.tree.root.children.Y.prefix_n -string/which-key.keys.mappings.n.tree.root.children.Y.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.Y.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.Y.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.Y.mapping.id -string/which-key.keys.mappings.n.tree.root.children.Y.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.Y.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.Y.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.Y.prefix_i -string/which-key.keys.mappings.n.tree.root.children.k.prefix_n -string/which-key.keys.mappings.n.tree.root.children.k.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.k.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.k.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.k.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.k.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.k.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.k.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.k.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.k.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.k.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.k.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.^W.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.^W.mapping.group -string/which-key.keys.mappings.n.tree.root.children.^W.mapping.label -string/which-key.keys.mappings.n.tree.root.children.^W.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.^W.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.^W.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.j.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.x.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.<.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.>.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.=.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.s.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.|.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.-.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children._.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children._.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children._.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.l.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.w.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.T.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.h.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.v.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.k.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.q.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.prefix_n -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.^W.children.+.prefix_i -string/which-key.keys.mappings.n.tree.root.children.^W.prefix_i -string/which-key.keys.mappings.n.tree.root.children.w.prefix_n -string/which-key.keys.mappings.n.tree.root.children.w.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.w.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.w.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.w.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.w.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.w.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.w.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.w.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.w.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.w.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.w.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].prefix_n -string/which-key.keys.mappings.n.tree.root.children.].mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.].mapping.group -string/which-key.keys.mappings.n.tree.root.children.].children.d.prefix_n -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.label -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.id -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.].children.d.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.].children.d.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].children.s.prefix_n -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.].children.s.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.].children.s.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].children.(.prefix_n -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.].children.(.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.].children.(.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].children.M.prefix_n -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.].children.M.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.].children.M.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].children.{.prefix_n -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.].children.{.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.].children.{.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].children.<.prefix_n -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.].children.<.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.].children.<.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].children.m.prefix_n -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.].children.m.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.].children.m.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].children.%.prefix_n -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.id -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.label -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.].children.%.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.].children.%.prefix_i -string/which-key.keys.mappings.n.tree.root.children.].prefix_i -string/which-key.keys.mappings.n.tree.root.children.".prefix_n -string/which-key.keys.mappings.n.tree.root.children.".mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.".mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.".mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.".mapping.group -string/which-key.keys.mappings.n.tree.root.children.".mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.".mapping.plugin -string/which-key.keys.mappings.n.tree.root.children.".mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.".mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.".mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.".mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.".mapping.mode -string/which-key.keys.mappings.n.tree.root.children.".prefix_i -string/which-key.keys.mappings.n.tree.root.children.e.prefix_n -string/which-key.keys.mappings.n.tree.root.children.e.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.e.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.e.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.e.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.e.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.e.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.e.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.e.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.e.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.e.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.e.prefix_i -string/which-key.keys.mappings.n.tree.root.children.$.prefix_n -string/which-key.keys.mappings.n.tree.root.children.$.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.$.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.$.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.$.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.$.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.$.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.$.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.$.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.$.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.$.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.$.prefix_i -string/which-key.keys.mappings.n.tree.root.children.%.prefix_n -string/which-key.keys.mappings.n.tree.root.children.%.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.%.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.%.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.%.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.%.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.%.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.%.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.%.mapping.id -string/which-key.keys.mappings.n.tree.root.children.%.mapping.label -string/which-key.keys.mappings.n.tree.root.children.%.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.%.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.%.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .prefix_n -string/which-key.keys.mappings.n.tree.root.children. .mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children. .mapping.group -string/which-key.keys.mappings.n.tree.root.children. .children.c.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.c.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.c.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.c.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.c.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.c.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.c.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children. .children.c.mapping.group -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.c.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.c.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.f.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.opts.desc -function/0/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.f.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.f.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.D.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.D.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.D.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.q.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.label -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.q.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.q.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children./.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children./.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children./.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children./.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children./.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children./.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children./.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children. .children./.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children./.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.e.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.label -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.e.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.e.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.w.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.w.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.w.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.w.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.w.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.w.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.w.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children. .children.w.mapping.group -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.opts.desc -function/0/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.l.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.w.children.r.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.w.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.r.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.r.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.r.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.r.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.r.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.r.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.r.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children. .children.r.mapping.group -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.prefix_n -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.mode -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.desc -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.id -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.opts.desc -function/2/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children. .children.r.children.n.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .children.r.prefix_i -string/which-key.keys.mappings.n.tree.root.children. .prefix_i -string/which-key.keys.mappings.n.tree.root.children.'.prefix_n -string/which-key.keys.mappings.n.tree.root.children.'.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.'.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.'.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.'.mapping.group -string/which-key.keys.mappings.n.tree.root.children.'.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.'.mapping.plugin -string/which-key.keys.mappings.n.tree.root.children.'.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.'.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.'.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.'.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.'.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.'.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.g.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.d.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.d.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.g.children.d.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.D.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.D.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.g.children.D.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.x.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.x.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.x.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.n.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.n.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.n.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.r.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.opts.desc -function/2/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.r.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.g.children.r.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children.g.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.v.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.v.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.v.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.b.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.b.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.b.children.c.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.b.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.e.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.e.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.e.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.f.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.f.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.f.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.%.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.%.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.g.children.%.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.N.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.N.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.N.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.c.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.c.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.A.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.O.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.c.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.mapping.id -string/which-key.keys.mappings.n.tree.root.children.g.children.c.children.o.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.c.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.g.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.g.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.g.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.u.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.u.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.u.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.~.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.~.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.~.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.'.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.plugin -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.'.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.'.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.`.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.plugin -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.`.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.`.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.U.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.keys.notation.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.keys.internal.3 -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.g.children.U.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.children.U.prefix_i -string/which-key.keys.mappings.n.tree.root.children.g.prefix_i -string/which-key.keys.mappings.n.tree.root.children.M.prefix_n -string/which-key.keys.mappings.n.tree.root.children.M.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.M.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.M.mapping.keys.internal.1 -boolean/which-key.keys.mappings.n.tree.root.children.M.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.M.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.M.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.M.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.M.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.M.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.M.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.M.prefix_i -string/which-key.keys.mappings.n.tree.root.children.v.prefix_n -string/which-key.keys.mappings.n.tree.root.children.v.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.v.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.v.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.v.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.v.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.v.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.v.mapping.group -string/which-key.keys.mappings.n.tree.root.children.v.mapping.label -string/which-key.keys.mappings.n.tree.root.children.v.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.v.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.v.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.v.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.v.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.v.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.v.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.v.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.v.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.v.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.[.mapping.group -string/which-key.keys.mappings.n.tree.root.children.[.children.d.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.opts.desc -function/1/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.opts.callback -boolean/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.label -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.id -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.desc -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.[.children.d.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.[.children.d.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.children.s.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.[.children.s.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.[.children.s.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.children.%.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.id -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.label -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.[.children.%.mapping.cmd -string/which-key.keys.mappings.n.tree.root.children.[.children.%.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.children.<.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.[.children.<.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.[.children.<.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.children.M.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.[.children.M.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.[.children.M.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.children.{.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.[.children.{.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.[.children.{.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.children.m.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.[.children.m.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.[.children.m.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.children.(.prefix_n -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.keys.internal.2 -boolean/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.preset -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.label -boolean/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.opts.silent -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.opts.desc -boolean/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.[.children.(.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.[.children.(.prefix_i -string/which-key.keys.mappings.n.tree.root.children.[.prefix_i -string/which-key.keys.mappings.n.tree.root.children.y.prefix_n -string/which-key.keys.mappings.n.tree.root.children.y.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.y.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.y.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.y.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.y.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.y.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.y.mapping.group -string/which-key.keys.mappings.n.tree.root.children.y.mapping.label -string/which-key.keys.mappings.n.tree.root.children.y.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.y.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.y.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.y.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.y.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.y.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.y.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.y.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.y.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.y.prefix_i -string/which-key.keys.mappings.n.tree.root.children.c.prefix_n -string/which-key.keys.mappings.n.tree.root.children.c.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.c.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.c.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.c.mapping.mode -string/which-key.keys.mappings.n.tree.root.children.c.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.c.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.c.mapping.group -string/which-key.keys.mappings.n.tree.root.children.c.mapping.label -string/which-key.keys.mappings.n.tree.root.children.c.mapping.prefix -boolean/which-key.keys.mappings.n.tree.root.children.c.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.c.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.c.children.a.prefix_n -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.group -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.label -string/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.c.children.a.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.c.children.a.prefix_i -string/which-key.keys.mappings.n.tree.root.children.c.children.i.prefix_n -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.keys.keys -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.keys.notation.1 -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.keys.notation.2 -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.keys.internal.1 -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.keys.internal.2 -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.prefix -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.name -boolean/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.preset -boolean/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.group -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.label -string/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.mode -boolean/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.opts.silent -boolean/which-key.keys.mappings.n.tree.root.children.c.children.i.mapping.opts.noremap -string/which-key.keys.mappings.n.tree.root.children.c.children.i.prefix_i -string/which-key.keys.mappings.n.tree.root.children.c.prefix_i -string/which-key.keys.mappings.n.tree.root.prefix_i -string/which-key.keys.mappings.n.mode -string/which-key.keys.mappings.n36.tree.root.prefix_n -string/which-key.keys.mappings.n36.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n36.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n36.tree.root.mapping.group -string/which-key.keys.mappings.n36.tree.root.prefix_i -string/which-key.keys.mappings.n36.mode -number/which-key.keys.mappings.n36.buf -string/which-key.keys.mappings.i.tree.root.prefix_n -string/which-key.keys.mappings.i.tree.root.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.mapping.prefix -boolean/which-key.keys.mappings.i.tree.root.mapping.group -string/which-key.keys.mappings.i.tree.root.children.^M.prefix_n -string/which-key.keys.mappings.i.tree.root.children.^M.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.^M.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.^M.mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.^M.mapping.id -string/which-key.keys.mappings.i.tree.root.children.^M.mapping.desc -string/which-key.keys.mappings.i.tree.root.children.^M.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.^M.mapping.cmd -string/which-key.keys.mappings.i.tree.root.children.^M.prefix_i -string/which-key.keys.mappings.i.tree.root.children.^W.prefix_n -string/which-key.keys.mappings.i.tree.root.children.^W.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.^W.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.^W.mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.^W.mapping.id -string/which-key.keys.mappings.i.tree.root.children.^W.mapping.desc -string/which-key.keys.mappings.i.tree.root.children.^W.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.^W.mapping.cmd -string/which-key.keys.mappings.i.tree.root.children.^W.prefix_i -string/which-key.keys.mappings.i.tree.root.children.<80>^D .prefix_n -string/which-key.keys.mappings.i.tree.root.children.<80>^D .mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.<80>^D .mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.<80>^D .mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.<80>^D .mapping.desc -string/which-key.keys.mappings.i.tree.root.children.<80>^D .mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.<80>^D .mapping.id -string/which-key.keys.mappings.i.tree.root.children.<80>^D .prefix_i -string/which-key.keys.mappings.i.tree.root.children.<80>kB.prefix_n -string/which-key.keys.mappings.i.tree.root.children.<80>kB.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.<80>kB.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.<80>kB.mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.<80>kB.mapping.desc -string/which-key.keys.mappings.i.tree.root.children.<80>kB.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.<80>kB.mapping.id -string/which-key.keys.mappings.i.tree.root.children.<80>kB.prefix_i -string/which-key.keys.mappings.i.tree.root.children.^N.prefix_n -string/which-key.keys.mappings.i.tree.root.children.^N.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.^N.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.^N.mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.^N.mapping.desc -string/which-key.keys.mappings.i.tree.root.children.^N.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.^N.mapping.id -string/which-key.keys.mappings.i.tree.root.children.^N.prefix_i -string/which-key.keys.mappings.i.tree.root.children.^P.prefix_n -string/which-key.keys.mappings.i.tree.root.children.^P.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.^P.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.^P.mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.^P.mapping.desc -string/which-key.keys.mappings.i.tree.root.children.^P.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.^P.mapping.id -string/which-key.keys.mappings.i.tree.root.children.^P.prefix_i -string/which-key.keys.mappings.i.tree.root.children.^U.prefix_n -string/which-key.keys.mappings.i.tree.root.children.^U.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.^U.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.^U.mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.^U.mapping.id -string/which-key.keys.mappings.i.tree.root.children.^U.mapping.desc -string/which-key.keys.mappings.i.tree.root.children.^U.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.^U.mapping.cmd -string/which-key.keys.mappings.i.tree.root.children.^U.prefix_i -string/which-key.keys.mappings.i.tree.root.children.^I.prefix_n -string/which-key.keys.mappings.i.tree.root.children.^I.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.^I.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.^I.mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.^I.mapping.desc -string/which-key.keys.mappings.i.tree.root.children.^I.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.^I.mapping.id -string/which-key.keys.mappings.i.tree.root.children.^I.prefix_i -string/which-key.keys.mappings.i.tree.root.children.^R.prefix_n -string/which-key.keys.mappings.i.tree.root.children.^R.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.^R.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.^R.mapping.keys.internal.1 -boolean/which-key.keys.mappings.i.tree.root.children.^R.mapping.group -string/which-key.keys.mappings.i.tree.root.children.^R.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.^R.mapping.plugin -string/which-key.keys.mappings.i.tree.root.children.^R.mapping.label -boolean/which-key.keys.mappings.i.tree.root.children.^R.mapping.opts.silent -string/which-key.keys.mappings.i.tree.root.children.^R.mapping.opts.desc -boolean/which-key.keys.mappings.i.tree.root.children.^R.mapping.opts.noremap -string/which-key.keys.mappings.i.tree.root.children.^R.mapping.mode -string/which-key.keys.mappings.i.tree.root.children.^R.prefix_i -string/which-key.keys.mappings.i.tree.root.children.^E.prefix_n -string/which-key.keys.mappings.i.tree.root.children.^E.mapping.keys.keys -string/which-key.keys.mappings.i.tree.root.children.^E.mapping.keys.notation.1 -string/which-key.keys.mappings.i.tree.root.children.^E.mapping.keys.internal.1 -string/which-key.keys.mappings.i.tree.root.children.^E.mapping.desc -string/which-key.keys.mappings.i.tree.root.children.^E.mapping.prefix -string/which-key.keys.mappings.i.tree.root.children.^E.mapping.id -string/which-key.keys.mappings.i.tree.root.children.^E.prefix_i -string/which-key.keys.mappings.i.tree.root.prefix_i -string/which-key.keys.mappings.i.mode -string/which-key.keys.mappings.n66.tree.root.prefix_n -string/which-key.keys.mappings.n66.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n66.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n66.tree.root.mapping.group -string/which-key.keys.mappings.n66.tree.root.prefix_i -string/which-key.keys.mappings.n66.mode -number/which-key.keys.mappings.n66.buf -string/which-key.keys.mappings.n65.tree.root.prefix_n -string/which-key.keys.mappings.n65.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n65.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n65.tree.root.mapping.group -string/which-key.keys.mappings.n65.tree.root.prefix_i -string/which-key.keys.mappings.n65.mode -number/which-key.keys.mappings.n65.buf -string/which-key.keys.mappings.n61.tree.root.prefix_n -string/which-key.keys.mappings.n61.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n61.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n61.tree.root.mapping.group -string/which-key.keys.mappings.n61.tree.root.prefix_i -string/which-key.keys.mappings.n61.mode -number/which-key.keys.mappings.n61.buf -string/which-key.keys.mappings.n56.tree.root.prefix_n -string/which-key.keys.mappings.n56.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n56.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n56.tree.root.mapping.group -string/which-key.keys.mappings.n56.tree.root.prefix_i -string/which-key.keys.mappings.n56.mode -number/which-key.keys.mappings.n56.buf -string/which-key.keys.mappings.n49.tree.root.prefix_n -string/which-key.keys.mappings.n49.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n49.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n49.tree.root.mapping.group -string/which-key.keys.mappings.n49.tree.root.prefix_i -string/which-key.keys.mappings.n49.mode -number/which-key.keys.mappings.n49.buf -string/which-key.keys.mappings.n51.tree.root.prefix_n -string/which-key.keys.mappings.n51.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n51.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n51.tree.root.mapping.group -string/which-key.keys.mappings.n51.tree.root.prefix_i -string/which-key.keys.mappings.n51.mode -number/which-key.keys.mappings.n51.buf -string/which-key.keys.mappings.n44.tree.root.prefix_n -string/which-key.keys.mappings.n44.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n44.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n44.tree.root.mapping.group -string/which-key.keys.mappings.n44.tree.root.prefix_i -string/which-key.keys.mappings.n44.mode -number/which-key.keys.mappings.n44.buf -string/which-key.keys.mappings.n45.tree.root.prefix_n -string/which-key.keys.mappings.n45.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n45.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n45.tree.root.mapping.group -string/which-key.keys.mappings.n45.tree.root.prefix_i -string/which-key.keys.mappings.n45.mode -number/which-key.keys.mappings.n45.buf -string/which-key.keys.mappings.n58.tree.root.prefix_n -string/which-key.keys.mappings.n58.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n58.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n58.tree.root.mapping.group -string/which-key.keys.mappings.n58.tree.root.prefix_i -string/which-key.keys.mappings.n58.mode -number/which-key.keys.mappings.n58.buf -string/which-key.keys.mappings.n57.tree.root.prefix_n -string/which-key.keys.mappings.n57.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n57.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n57.tree.root.mapping.group -string/which-key.keys.mappings.n57.tree.root.prefix_i -string/which-key.keys.mappings.n57.mode -number/which-key.keys.mappings.n57.buf -string/which-key.keys.mappings.n55.tree.root.prefix_n -string/which-key.keys.mappings.n55.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n55.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n55.tree.root.mapping.group -string/which-key.keys.mappings.n55.tree.root.prefix_i -string/which-key.keys.mappings.n55.mode -number/which-key.keys.mappings.n55.buf -string/which-key.keys.mappings.n53.tree.root.prefix_n -string/which-key.keys.mappings.n53.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n53.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n53.tree.root.mapping.group -string/which-key.keys.mappings.n53.tree.root.prefix_i -string/which-key.keys.mappings.n53.mode -number/which-key.keys.mappings.n53.buf -string/which-key.keys.mappings.o22.tree.root.prefix_n -string/which-key.keys.mappings.o22.tree.root.mapping.keys.keys -string/which-key.keys.mappings.o22.tree.root.mapping.prefix -boolean/which-key.keys.mappings.o22.tree.root.mapping.group -string/which-key.keys.mappings.o22.tree.root.prefix_i -string/which-key.keys.mappings.o22.mode -number/which-key.keys.mappings.o22.buf -string/which-key.keys.mappings.n52.tree.root.prefix_n -string/which-key.keys.mappings.n52.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n52.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n52.tree.root.mapping.group -string/which-key.keys.mappings.n52.tree.root.prefix_i -string/which-key.keys.mappings.n52.mode -number/which-key.keys.mappings.n52.buf -string/which-key.keys.mappings.n43.tree.root.prefix_n -string/which-key.keys.mappings.n43.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n43.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n43.tree.root.mapping.group -string/which-key.keys.mappings.n43.tree.root.prefix_i -string/which-key.keys.mappings.n43.mode -number/which-key.keys.mappings.n43.buf -string/which-key.keys.mappings.n29.tree.root.prefix_n -string/which-key.keys.mappings.n29.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n29.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n29.tree.root.mapping.group -string/which-key.keys.mappings.n29.tree.root.prefix_i -string/which-key.keys.mappings.n29.mode -number/which-key.keys.mappings.n29.buf -string/which-key.keys.mappings.n34.tree.root.prefix_n -string/which-key.keys.mappings.n34.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n34.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n34.tree.root.mapping.group -string/which-key.keys.mappings.n34.tree.root.prefix_i -string/which-key.keys.mappings.n34.mode -number/which-key.keys.mappings.n34.buf -string/which-key.keys.mappings.n12.tree.root.prefix_n -string/which-key.keys.mappings.n12.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n12.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n12.tree.root.mapping.group -string/which-key.keys.mappings.n12.tree.root.prefix_i -string/which-key.keys.mappings.n12.mode -number/which-key.keys.mappings.n12.buf -string/which-key.keys.mappings.n32.tree.root.prefix_n -string/which-key.keys.mappings.n32.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n32.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n32.tree.root.mapping.group -string/which-key.keys.mappings.n32.tree.root.prefix_i -string/which-key.keys.mappings.n32.mode -number/which-key.keys.mappings.n32.buf -string/which-key.keys.mappings.n48.tree.root.prefix_n -string/which-key.keys.mappings.n48.tree.root.mapping.keys.keys -string/which-key.keys.mappings.n48.tree.root.mapping.prefix -boolean/which-key.keys.mappings.n48.tree.root.mapping.group -string/which-key.keys.mappings.n48.tree.root.prefix_i -string/which-key.keys.mappings.n48.mode -number/which-key.keys.mappings.n48.buf -function/0/which-key.keys.setup -function/4/which-key.keys.add_hooks -boolean/which-key.keys.operators.d -boolean/which-key.keys.operators.gc -boolean/which-key.keys.operators.! -boolean/which-key.keys.operators.v -boolean/which-key.keys.operators.gu -boolean/which-key.keys.operators.c -boolean/which-key.keys.operators.gU -boolean/which-key.keys.operators.g~ -boolean/which-key.keys.operators. -boolean/which-key.keys.operators.> -boolean/which-key.keys.operators.y -boolean/which-key.keys.operators.zf -boolean/which-key.keys.blacklist.i.k -boolean/which-key.keys.blacklist.i.j -boolean/which-key.keys.blacklist.v.k -boolean/which-key.keys.blacklist.v.j -function/1/which-key.keys.update -function/2/which-key.keys.update_keymaps -function/0/which-key.keys.dump -function/0/which-key.keys.check_health -boolean/which-key.keys.nowait.g` -boolean/which-key.keys.nowait.' -boolean/which-key.keys.nowait." -boolean/which-key.keys.nowait.g' -boolean/which-key.keys.nowait. -boolean/which-key.keys.nowait.` -function/2/which-key.keys.get_tree -function/1/which-key.keys.get_operator -function/3/which-key.keys.get_mappings -function/1/Comment.ft.calculate -function/2/Comment.ft.get -function/2/Comment.ft.contains -function/2/Comment.ft.set -boolean/nvim-tree.diagnostics.show_on_open_dirs -boolean/nvim-tree.diagnostics.show_on_dirs -function/1/nvim-tree.diagnostics.setup -number/nvim-tree.diagnostics.debounce_delay -function/0/nvim-tree.diagnostics.clear -boolean/nvim-tree.diagnostics.enable -number/nvim-tree.diagnostics.severity.max -number/nvim-tree.diagnostics.severity.min -function/0/nvim-tree.diagnostics.update -function/1/Comment.config.get -string/Comment.config.config.extra.below -string/Comment.config.config.extra.eol -string/Comment.config.config.extra.above -boolean/Comment.config.config.sticky -boolean/Comment.config.config.padding -string/Comment.config.config.toggler.line -string/Comment.config.config.toggler.block -boolean/Comment.config.config.mappings.basic -boolean/Comment.config.config.mappings.extra -string/Comment.config.config.opleader.line -string/Comment.config.config.opleader.block -function/2/Comment.config.set -function/1/Comment.setup -function/5/nvim-autopairs.completion.handlers.lisp -function/5/nvim-autopairs.completion.handlers.* -function/0/nvim-autopairs.conds.none -function/0/nvim-autopairs.conds.is_bracket_line -function/1/nvim-autopairs.conds.invert -function/2/nvim-autopairs.conds.before_regex -function/1/nvim-autopairs.conds.before_text -function/2/nvim-autopairs.conds.after_regex -function/1/nvim-autopairs.conds.not_before_text -function/0/nvim-autopairs.conds.not_inside_quote -function/0/nvim-autopairs.conds.is_bracket_line_move -function/1/nvim-autopairs.conds.not_after_text_check -function/1/nvim-autopairs.conds.after_text_check -function/2/nvim-autopairs.conds.not_before_regex_check -function/2/nvim-autopairs.conds.not_before_char -function/0/nvim-autopairs.conds.is_bracket_in_quote -function/2/nvim-autopairs.conds.after_regex_check -function/2/nvim-autopairs.conds.not_before_regex -function/0/nvim-autopairs.conds.is_inside_quote -function/1/nvim-autopairs.conds.after_text -function/1/nvim-autopairs.conds.not_after_text -function/2/nvim-autopairs.conds.not_after_regex_check -function/0/nvim-autopairs.conds.is_end_line -function/0/nvim-autopairs.conds.done -function/0/nvim-autopairs.conds.move_right -function/2/nvim-autopairs.conds.before_regex_check -function/1/nvim-autopairs.conds.not_filetypes -function/0/nvim-autopairs.conds.not_add_quote_inside_quote -function/2/nvim-autopairs.conds.not_after_regex -function/1/nvim-autopairs.conds.before_text_check -function/1/nvim-autopairs.conds.not_before_text_check -function/2/nvim-autopairs.rule.can_move -function/2/nvim-autopairs.rule.get_end_pair -function/2/nvim-autopairs.rule.get_end_pair_length -function/2/nvim-autopairs.rule.with_cr -function/2/nvim-autopairs.rule.can_pair -function/2/nvim-autopairs.rule.get_map_cr -function/1/nvim-autopairs.rule.use_multibyte -function/2/nvim-autopairs.rule.only_cr -function/2/nvim-autopairs.rule.use_key -function/2/nvim-autopairs.rule.replace_map_cr -function/3/nvim-autopairs.rule.replace_endpair -function/2/nvim-autopairs.rule.set_end_pair_length -function/2/nvim-autopairs.rule.with_del -function/2/nvim-autopairs.rule.end_wise -function/2/nvim-autopairs.rule.can_cr -function/2/nvim-autopairs.rule.with_move -function/3/nvim-autopairs.rule.with_pair -function/2/nvim-autopairs.rule.can_del -function/3/nvim-autopairs.rule.use_regex -function/2/nvim-autopairs.rule.use_undo -function/0/nvim-autopairs.rule.new -function/0/math.sqrt -function/0/math.log10 -function/0/math.exp -function/0/math.sin -function/0/math.cos -function/0/math.tan -function/0/math.asin -function/0/math.acos -function/0/math.atan -function/0/math.sinh -function/0/math.cosh -function/0/math.tanh -function/0/math.frexp -function/0/math.modf -function/0/math.log -function/1/math.deg -function/1/math.rad -function/0/math.atan2 -function/0/math.pow -function/0/math.fmod -function/0/math.ldexp -function/0/math.min -function/0/math.max -number/math.pi -number/math.huge -function/0/math.random -function/0/math.randomseed -function/0/math.abs -function/0/math.floor -function/0/math.ceil -function/1/nvim-tree.actions.node.file-popup.setup -string/nvim-tree.actions.node.file-popup.open_win_config.relative -string/nvim-tree.actions.node.file-popup.open_win_config.style -number/nvim-tree.actions.node.file-popup.open_win_config.row -string/nvim-tree.actions.node.file-popup.open_win_config.border -number/nvim-tree.actions.node.file-popup.open_win_config.col -function/1/nvim-tree.actions.node.file-popup.toggle_file_info -function/0/nvim-tree.actions.node.file-popup.close_popup -function/1/vscode.setup -function/1/vscode.change_style -string/jit.arch -number/jit.version_num -string/jit.os -function/0/jit.flush -function/0/jit.on -function/0/jit.off -function/0/jit.security -function/0/jit.status -string/jit.version -function/0/jit.attach -function/2/cmp.entry.execute -function/2/cmp.entry.convert_range_encoding -function/1/cmp.entry.get_overwrite -function/1/cmp.entry.get_commit_characters -function/1/cmp.entry.get_documentation -function/1/cmp.entry.get_insert_text -function/1/cmp.entry.get_word -function/2/cmp.entry.resolve -function/1/cmp.entry.is_deprecated -function/3/cmp.entry.get_view -function/1/cmp.entry.get_filter_text -function/1/cmp.entry.get_kind -function/1/cmp.entry.get_offset -function/1/cmp.entry.get_completion_item -function/3/cmp.entry.match -function/2/cmp.entry.get_vim_item -function/3/cmp.entry.fill_defaults -function/4/cmp.entry.new -function/1/cmp.entry.get_replace_range -function/1/cmp.entry.get_insert_range -function/0/table.clear -function/2/table.foreachi -function/2/table.foreach -function/1/table.getn -function/0/table.maxn -function/0/table.insert -function/2/table.remove -function/5/table.move -function/0/table.concat -function/0/table.sort -function/0/table.new -function/1/nvim-tree.events.on_tree_close -function/1/nvim-tree.events.on_tree_resize -function/2/nvim-tree.events.subscribe -function/0/nvim-tree.events._dispatch_ready -function/0/nvim-tree.events._dispatch_on_tree_open -function/2/nvim-tree.events._dispatch_node_renamed -function/1/nvim-tree.events._dispatch_file_removed -function/1/nvim-tree.events._dispatch_file_created -function/1/nvim-tree.events._dispatch_folder_created -function/2/nvim-tree.events._dispatch_will_rename_node -function/1/nvim-tree.events._dispatch_folder_removed -function/0/nvim-tree.events._dispatch_on_tree_close -function/1/nvim-tree.events._dispatch_on_tree_resize -function/1/nvim-tree.events._dispatch_tree_attached_post -function/1/nvim-tree.events.on_nvim_tree_ready -function/1/nvim-tree.events.on_node_renamed -function/1/nvim-tree.events.on_file_created -function/1/nvim-tree.events.on_file_removed -function/1/nvim-tree.events.on_folder_created -function/1/nvim-tree.events.on_folder_removed -function/1/nvim-tree.events.on_tree_open -function/1/nvim-tree.notify.error -function/1/nvim-tree.notify.info -function/1/nvim-tree.notify.debug -function/1/nvim-tree.notify.warn -function/1/nvim-tree.notify.trace -function/1/nvim-tree.notify.setup -function/2/nvim-tree.explorer.filters.prepare -function/2/nvim-tree.explorer.filters.should_filter -boolean/nvim-tree.explorer.filters.config.filter_custom -boolean/nvim-tree.explorer.filters.config.filter_git_ignored -boolean/nvim-tree.explorer.filters.config.filter_git_clean -boolean/nvim-tree.explorer.filters.config.filter_no_buffer -boolean/nvim-tree.explorer.filters.config.filter_dotfiles -function/1/nvim-tree.explorer.filters.setup -function/1/nvim-tree.explorer.watch.setup -number/nvim-tree.explorer.watch.debounce_delay -function/1/nvim-tree.explorer.watch.create_watcher -number/nvim-tree.explorer.watch.uid -boolean/nvim-tree.explorer.watch.enabled -function/2/nvim-tree.actions.fs.rename-file.rename -boolean/nvim-tree.actions.fs.rename-file.enable_reload -function/1/nvim-tree.actions.fs.rename-file.setup -function/1/nvim-tree.actions.fs.rename-file.fn -function/1/nvim-tree.explorer.node.is_git_ignored -function/3/nvim-tree.explorer.node.update_git_status -function/1/nvim-tree.explorer.node.has_one_child_folder -function/1/nvim-tree.explorer.node.setup -function/1/nvim-tree.explorer.node.node_destroy -function/1/nvim-tree.explorer.node.get_git_status -function/0/nvim-tree.renderer.help.compute_lines -function/2/nvim-tree.explorer.explore.explore -function/1/nvim-tree.explorer.explore.setup -function/1/nvim-tree.explorer.reload.refresh_nodes_for_path -function/1/nvim-tree.explorer.reload.setup -function/1/nvim-tree.explorer.reload.refresh_node -function/3/nvim-tree.explorer.reload.reload -function/1/nvim-tree.actions.tree-modifiers.collapse-all.fn -function/2/nvim-tree.actions.moves.item.fn -function/0/nvim-tree.actions.reloaders.reloaders.reload_git -function/2/nvim-tree.actions.reloaders.reloaders.reload_node_status -function/2/nvim-tree.actions.reloaders.reloaders.reload_explorer -boolean/nvim-tree.config.remove_keymaps -boolean/nvim-tree.config.select_prompts -boolean/nvim-tree.config.actions.remove_file.close_window -boolean/nvim-tree.config.actions.open_file.resize_window -boolean/nvim-tree.config.actions.open_file.quit_on_open -boolean/nvim-tree.config.actions.use_system_clipboard -number/nvim-tree.config.actions.expand_all.max_folder_discovery -string/nvim-tree.config.on_attach -boolean/nvim-tree.config.hijack_cursor -boolean/nvim-tree.config.sync_root_with_cwd -number/nvim-tree.config.notify.threshold -boolean/nvim-tree.config.reload_on_bufenter -boolean/nvim-tree.config.open_on_setup -boolean/nvim-tree.config.open_on_setup_file -string/nvim-tree.config.diagnostics.icons.hint -string/nvim-tree.config.diagnostics.icons.error -string/nvim-tree.config.diagnostics.icons.info -string/nvim-tree.config.diagnostics.icons.warning -number/nvim-tree.config.diagnostics.debounce_delay -boolean/nvim-tree.config.diagnostics.show_on_dirs -boolean/nvim-tree.config.diagnostics.enable -boolean/nvim-tree.config.diagnostics.show_on_open_dirs -boolean/nvim-tree.config.disable_netrw -boolean/nvim-tree.config.hijack_netrw -boolean/nvim-tree.config.view.number -boolean/nvim-tree.config.view.centralize_selection -number/nvim-tree.config.view.debounce_delay -boolean/nvim-tree.config.view.cursorline -number/nvim-tree.config.view.width -boolean/nvim-tree.config.view.hide_root_folder -string/nvim-tree.config.view.side -boolean/nvim-tree.config.view.preserve_window_proportions -boolean/nvim-tree.config.view.relativenumber -string/nvim-tree.config.view.signcolumn -boolean/nvim-tree.config.view.mappings.custom_only -boolean/nvim-tree.config.hijack_unnamed_buffer_when_opening -string/nvim-tree.config.sort_by -boolean/nvim-tree.config.respect_buf_cwd -boolean/nvim-tree.config.filters.git_clean -boolean/nvim-tree.config.filters.no_buffer -boolean/nvim-tree.config.filters.dotfiles -boolean/nvim-tree.config.update_focused_file.update_root -boolean/nvim-tree.config.update_focused_file.enable -boolean/nvim-tree.config.ignore_buffer_on_setup -boolean/nvim-tree.config.auto_reload_on_write -string/nvim-tree.config.live_filter.prefix -boolean/nvim-tree.config.live_filter.always_show_folders -boolean/nvim-tree.config.prefer_startup_root -function/1/nvim-tree.on_enter -function/3/nvim-tree.find_file -boolean/nvim-tree.initialized -function/1/nvim-tree.on_keypress -function/1/nvim-tree.change_dir -function/1/nvim-tree.setup -function/1/nvim-tree.open_replacing_current_buffer -function/0/nvim-tree.open_on_directory -function/1/nvim-tree.open -function/0/nvim-tree.reset_highlight -function/4/nvim-tree.toggle -function/0/nvim-tree.get_config -function/0/nvim-tree.tab_enter -function/1/nvim-tree.resize -function/0/nvim-tree.place_cursor_on_node -boolean/nvim-tree.setup_called -string/nvim-tree.init_root -function/0/nvim-tree.focus -function/2/nvim-tree.change_root -function/1/nvim-tree.actions.moves.sibling.fn -function/2/nvim-tree.explorer.sorters.node_comparator_modification_time -function/2/nvim-tree.explorer.sorters.node_comparator -function/1/nvim-tree.explorer.sorters.setup -string/nvim-tree.explorer.sorters.sort_by -function/2/nvim-tree.explorer.sorters.merge_sort -function/2/nvim-tree.explorer.sorters.node_comparator_extension -function/2/nvim-tree.explorer.sorters.node_comparator_name_case_sensisive -function/2/nvim-tree.explorer.sorters.node_comparator_name_ignorecase -function/1/vscode.theme.set_highlights -function/0/vscode.theme.link_highlight -function/1/cmp.core.prepare -function/1/cmp.core.on_moved -function/2/cmp.core.set_context -function/2/cmp.core.get_sources -function/2/cmp.core.register_source -function/2/cmp.core.unregister_source -function/2/cmp.core.complete -function/2/cmp.core.get_context -function/1/cmp.core.complete_common_string -function/1/cmp.core.reset -function/4/cmp.core.confirm -function/3/cmp.core.autoindent -function/2/cmp.core.on_change -function/3/cmp.core.on_keymap -function/0/cmp.core.new -function/1/cmp.core.suspend -function/2/cmp.core.filter.sync -function/0/cmp.core.filter.stop -boolean/cmp.core.filter.running -number/cmp.core.filter.timeout -function/1/cmp.utils.keymap.delete -function/3/cmp.utils.keymap.listen -function/2/cmp.utils.keymap.get_map -function/3/cmp.utils.keymap.fallback -function/1/cmp.utils.keymap.t -function/2/cmp.utils.keymap.equals -function/3/cmp.utils.keymap.solve -function/1/cmp.utils.keymap.normalize -function/0/cmp.utils.keymap.undobreak -function/5/cmp.utils.keymap.set_map -function/1/cmp.utils.keymap.backspace -function/0/cmp.utils.keymap.undojoin -string/cmp.utils.keymap.to_keymap..1 -string/cmp.utils.keymap.to_keymap..1 -string/cmp.utils.keymap.to_keymap..2 -string/cmp.utils.keymap.to_keymap..3 -string/cmp.utils.keymap.to_keymap..1 -string/cmp.utils.keymap.to_keymap..1 -string/cmp.utils.keymap.to_keymap..1 -function/1/cmp.utils.keymap.indentkeys -function/0/cmp.utils.api.get_screen_cursor -function/0/cmp.utils.api.get_cursor -function/0/cmp.utils.api.get_cursor_before_line -function/0/cmp.utils.api.is_cmdline_mode -function/0/cmp.utils.api.get_mode -function/0/cmp.utils.api.is_insert_mode -function/0/cmp.utils.api.is_visual_mode -function/0/cmp.utils.api.get_current_line -function/0/cmp.utils.api.is_select_mode -function/0/cmp.utils.api.is_suitable_mode -function/2/cmp.utils.cache.key -function/3/cmp.utils.cache.ensure -function/1/cmp.utils.cache.clear -function/2/cmp.utils.cache.get -function/0/cmp.utils.cache.new -function/3/cmp.utils.cache.set -function/1/cmp.source.get_keyword_length -number/cmp.source.SourceStatus.COMPLETED -number/cmp.source.SourceStatus.WAITING -number/cmp.source.SourceStatus.FETCHING -function/3/cmp.source.execute -function/1/cmp.source.get_fetching_time -function/1/cmp.source.get_source_config -function/1/cmp.source.is_available -function/1/cmp.source.get_debug_name -function/0/cmp.source.get_matching_config -function/1/cmp.source.reset -function/2/cmp.source.get_entries -function/3/cmp.source.resolve -function/1/cmp.source.get_position_encoding_kind -function/3/cmp.source.complete -function/1/cmp.source.get_default_replace_range -function/1/cmp.source.get_entry_filter -function/1/cmp.source.get_keyword_pattern -function/1/cmp.source.get_default_insert_range -function/1/cmp.source.get_trigger_characters -function/2/cmp.source.new -function/0/debug.getupvalue -function/0/debug.setupvalue -function/0/debug.upvalueid -function/0/debug.upvaluejoin -function/0/debug.sethook -function/0/debug.getmetatable -function/0/debug.setmetatable -function/0/debug.getfenv -function/0/debug.setfenv -function/0/debug.traceback -function/0/debug.gethook -function/0/debug.debug -function/0/debug.getregistry -function/0/debug.getinfo -function/0/debug.getlocal -function/0/debug.setlocal -function/0/cmp_nvim_lsp.setup -number/cmp_nvim_lsp.client_source_map.1 -function/1/cmp_nvim_lsp.default_capabilities -function/0/cmp_nvim_lsp._on_insert_enter -function/2/cmp_nvim_lsp.update_capabilities -function/2/nvim-tree.git.utils.file_status_to_dir_status -function/1/nvim-tree.git.utils.should_show_untracked -function/1/nvim-tree.git.utils.get_toplevel -function/2/cmp.view.wildmenu_entries_view.select_next_item -function/2/cmp.view.wildmenu_entries_view.select_prev_item -number/cmp.view.wildmenu_entries_view.ns -function/1/cmp.view.wildmenu_entries_view.visible -function/1/cmp.view.wildmenu_entries_view.get_selected_entry -function/1/cmp.view.wildmenu_entries_view.get_active_entry -function/1/cmp.view.wildmenu_entries_view.get_entries -function/0/cmp.view.wildmenu_entries_view.ready -function/1/cmp.view.wildmenu_entries_view.close -function/3/cmp.view.wildmenu_entries_view._select -function/0/cmp.view.wildmenu_entries_view._get_separator -function/1/cmp.view.wildmenu_entries_view.on_change -function/1/cmp.view.wildmenu_entries_view.abort -function/1/cmp.view.wildmenu_entries_view.info -function/1/cmp.view.wildmenu_entries_view.draw -function/1/cmp.view.wildmenu_entries_view.get_offset -function/1/cmp.view.wildmenu_entries_view.get_first_entry -function/3/cmp.view.wildmenu_entries_view.open -function/0/cmp.view.wildmenu_entries_view.new -function/1/nvim-tree.git.runner.run -function/1/nvim-tree.git.runner._run_git_job -function/2/nvim-tree.git.runner._log_raw_output -function/1/nvim-tree.git.runner._wait -function/3/nvim-tree.git.runner._getopts -function/3/nvim-tree.git.runner._parse_status_output -function/3/nvim-tree.git.runner._handle_incoming_data -function/0/package.preload.table.clear -function/0/jit.profile.dumpstack -function/0/jit.profile.stop -function/0/jit.profile.start -function/0/jit.util.funcbc -function/0/jit.util.funck -function/0/jit.util.funcuvname -function/0/jit.util.traceinfo -function/0/jit.util.traceir -function/0/jit.util.tracek -function/0/jit.util.tracesnap -function/0/jit.util.tracemc -function/0/jit.util.traceexitstub -function/0/jit.util.ircalladdr -function/0/jit.util.funcinfo -function/3/vim.keymap.del -function/4/vim.keymap.set -function/2/vim.filetype.findany -function/3/vim.filetype.getlines -function/1/vim.filetype.match -function/1/vim.filetype.add -function/2/vim.filetype.matchregex -function/2/vim.filetype.nextnonblank -function/1/vim._editor.tbl_flatten -function/4/vim._editor.list_extend -function/0/vim._editor._getvar -function/0/vim._editor._setvar -function/1/vim._editor.tbl_deep_extend -function/0/vim._editor.iconv -boolean/vim._editor.type_idx -boolean/vim._editor.val_idx -function/0/vim._editor.schedule -function/0/vim._editor.in_fast_event -function/0/vim._editor.call -function/0/vim._editor.rpcrequest -function/0/vim._editor.rpcnotify -function/0/vim._editor.wait -function/0/vim._editor.ui_attach -function/0/vim._editor.ui_detach -function/0/vim._editor.is_thread -function/1/vim._editor._system -userdata/vim._editor.NIL -function/1/vim._editor.uri_from_bufnr -function/3/vim._editor.split -function/1/vim._editor.schedule_wrap -function/2/vim._editor._expand_pat -function/2/vim._editor.on_key -function/1/vim._editor._expand_pat_get_parts -function/1/vim._editor._on_key -function/0/vim._editor._init_default_mappings -function/5/vim._editor.deprecate -function/4/vim._editor._cs_remote -function/0/vim._editor.pretty_print -function/2/vim._editor.startswith -function/0/vim._editor.empty_dict -function/1/vim._editor._load_package -function/0/vim._editor.register_keystroke_callback -function/3/vim._editor.notify_once -function/3/vim._editor.notify -function/2/vim._editor.defer_fn -function/2/vim._editor.deepcopy -function/5/vim._editor.region -function/2/vim._editor.paste -function/1/vim._editor.uri_from_fname -function/1/vim._editor.uri_to_fname -function/0/vim._editor.version -function/3/vim._editor.gsplit -function/1/vim._editor.funcref -function/1/vim._editor._os_proc_children -function/1/vim._editor._os_proc_info -function/0/vim._editor.diff -function/1/vim._editor.tbl_islist -function/1/vim._editor.tbl_isempty -function/1/vim._editor.defaulttable -function/1/vim._editor.is_callable -function/1/vim._editor.validate -function/2/vim._editor.endswith -function/1/vim._editor.tbl_get -function/0/vim._editor.regex -function/0/vim._editor.str_utf_end -function/0/vim._editor.str_utf_start -function/2/vim._editor.deep_equal -function/0/vim._editor.str_utf_pos -function/1/vim._editor.tbl_keys -function/1/vim._editor.tbl_add_reverse_lookup -function/2/vim._editor.tbl_contains -function/1/vim._editor.tbl_extend -function/2/vim._editor.tbl_filter -function/2/vim._editor.tbl_map -function/1/vim._editor.tbl_values -number/vim._editor.log.levels.INFO -number/vim._editor.log.levels.DEBUG -number/vim._editor.log.levels.TRACE -number/vim._editor.log.levels.WARN -number/vim._editor.log.levels.ERROR -number/vim._editor.log.levels.OFF -function/0/vim._editor._create_ts_parser -function/0/vim._editor._ts_add_language -function/0/vim._editor._ts_has_language -function/0/vim._editor._ts_remove_language -function/0/vim._editor._ts_inspect_language -function/0/vim._editor._ts_parse_query -function/0/vim._editor._ts_get_language_version -function/0/vim._editor._ts_get_minimum_language_version -function/0/vim._editor.stricmp -function/0/vim._editor.str_utfindex -function/0/vim._editor.str_byteindex -function/1/vim._editor.pesc -function/1/vim._editor.trim -function/3/vim._editor.list_slice -function/1/vim._editor.tbl_count -function/1/vim._editor.spairs -function/0/ffi.fill -function/0/ffi.abi -string/ffi.os -function/0/ffi.load -function/0/ffi.string -string/ffi.arch -function/0/ffi.metatype -function/0/ffi.copy -function/0/ffi.sizeof -function/0/ffi.errno -function/0/ffi.gc -userdata/ffi.C -function/0/ffi.cdef -function/0/ffi.cast -function/0/ffi.typeof -function/0/ffi.typeinfo -function/0/ffi.istype -function/0/ffi.alignof -function/0/ffi.offsetof -function/0/ffi.new -function/0/package.preload.vim._init_packages -string/vim.inspect._DESCRIPTION -string/vim.inspect._VERSION -function/2/vim.inspect.inspect -string/vim.inspect._LICENSE -string/vim.inspect._URL -function/0/string.buffer.decode -function/0/string.buffer.encode -function/0/string.buffer.new -function/1/vim.shared.tbl_flatten -function/4/vim.shared.list_extend -function/0/vim.shared._getvar -function/0/vim.shared._setvar -function/1/vim.shared.tbl_deep_extend -function/0/vim.shared.iconv -boolean/vim.shared.type_idx -boolean/vim.shared.val_idx -function/0/vim.shared.schedule -function/0/vim.shared.in_fast_event -function/0/vim.shared.call -function/0/vim.shared.rpcrequest -function/0/vim.shared.rpcnotify -function/0/vim.shared.wait -function/0/vim.shared.ui_attach -function/0/vim.shared.ui_detach -function/0/vim.shared.is_thread -function/1/vim.shared._system -userdata/vim.shared.NIL -function/1/vim.shared.uri_from_bufnr -function/3/vim.shared.split -function/1/vim.shared.schedule_wrap -function/2/vim.shared._expand_pat -function/2/vim.shared.on_key -function/1/vim.shared._expand_pat_get_parts -function/1/vim.shared._on_key -function/0/vim.shared._init_default_mappings -function/5/vim.shared.deprecate -function/4/vim.shared._cs_remote -function/0/vim.shared.pretty_print -function/2/vim.shared.startswith -function/0/vim.shared.empty_dict -function/1/vim.shared._load_package -function/0/vim.shared.register_keystroke_callback -function/3/vim.shared.notify_once -function/3/vim.shared.notify -function/2/vim.shared.defer_fn -function/2/vim.shared.deepcopy -function/5/vim.shared.region -function/2/vim.shared.paste -function/1/vim.shared.uri_from_fname -function/1/vim.shared.uri_to_fname -function/0/vim.shared.version -function/3/vim.shared.gsplit -function/1/vim.shared.funcref -function/1/vim.shared._os_proc_children -function/1/vim.shared._os_proc_info -function/0/vim.shared.diff -function/1/vim.shared.tbl_islist -function/1/vim.shared.tbl_isempty -function/1/vim.shared.defaulttable -function/1/vim.shared.is_callable -function/1/vim.shared.validate -function/2/vim.shared.endswith -function/1/vim.shared.tbl_get -function/0/vim.shared.regex -function/0/vim.shared.str_utf_end -function/0/vim.shared.str_utf_start -function/2/vim.shared.deep_equal -function/0/vim.shared.str_utf_pos -function/1/vim.shared.tbl_keys -function/1/vim.shared.tbl_add_reverse_lookup -function/2/vim.shared.tbl_contains -function/1/vim.shared.tbl_extend -function/2/vim.shared.tbl_filter -function/2/vim.shared.tbl_map -function/1/vim.shared.tbl_values -function/0/vim.shared._create_ts_parser -function/0/vim.shared._ts_add_language -function/0/vim.shared._ts_has_language -function/0/vim.shared._ts_remove_language -function/0/vim.shared._ts_inspect_language -function/0/vim.shared._ts_parse_query -function/0/vim.shared._ts_get_language_version -function/0/vim.shared._ts_get_minimum_language_version -function/0/vim.shared.stricmp -function/0/vim.shared.str_utfindex -function/0/vim.shared.str_byteindex -function/1/vim.shared.pesc -function/1/vim.shared.trim -function/3/vim.shared.list_slice -function/1/vim.shared.tbl_count -function/1/vim.shared.spairs -function/1/vim.F.ok_or_nil -function/1/vim.F.npcall -function/1/vim.F.nil_wrap -function/0/vim.F.pack_len -function/1/vim.F.unpack_len -function/2/vim.F.if_nil -function/0/package.preload.vim._meta -function/0/package.preload.table.new -function/0/package.loadlib -function/0/package.searchpath -function/0/package.seeall -function/0/package.loaders.1 -function/1/package.loaders.2 -function/1/package.loaders.3 -function/0/package.loaders.4 -function/0/package.loaders.5 -function/0/package.loaders.6 -string/package.path -string/package.cpath -function/2/dump -function/0/module -function/0/require -function/0/assert -function/1/cmp.utils.feedkeys.call.run -function/0/type -function/0/next -function/0/pairs -function/0/ipairs -function/0/getmetatable -function/0/setmetatable -function/0/getfenv -function/0/setfenv -function/0/rawget -function/0/rawset -function/0/rawequal -function/0/unpack -function/0/select -function/0/tonumber -function/0/tostring diff --git a/home/common/nvim/vim-opts.nix b/home/common/nvim/vim-opts.nix index b756fef..271a026 100644 --- a/home/common/nvim/vim-opts.nix +++ b/home/common/nvim/vim-opts.nix @@ -1,69 +1,50 @@ -{ lib, raw, call }: let defs = map (line: - if lib.hasPrefix "function/" line then let split = lib.splitString "/" (lib.removePrefix "function/" line); in { - type = "function"; - arity = lib.toInt (builtins.elemAt split 0); - value = builtins.elemAt split 1; - } else if lib.hasPrefix "string/" line then { - type = "string"; - value = lib.removePrefix "string/" line; - } else if lib.hasPrefix "boolean/" line then { - type = "boolean"; - value = lib.removePrefix "boolean/" line; - } else if lib.hasPrefix "number/" line then { - type = "number"; - value = lib.removePrefix "number/" line; - } else { - type = "ignore"; - value = "____ignore.___ignore"; - }) (lib.splitString "\n" (builtins.readFile ./vim-lua.txt)); - process' = val: ( - if val.type == "function" then ( - #if val.arity == 0 then - args: if args == "GET_INFO" then val else call (raw val.value) args - #else if val.arity == 1 then (a: if a == "GET_INFO" then val else call (raw val.value) [a]) - #else (a: if a == "GET_INFO" then val else call (raw val.value) a) - ) else raw val.value - ); - process = val: lib.setAttrByPath (lib.splitString "." val.value) (process' val); - processOpt = o: val: lib.setAttrByPath ["vim" o val] (raw "vim.${o}.${val}"); - processVar = val: - if lib.hasPrefix "b:" val then lib.setAttrByPath ["vim" "b" (lib.removePrefix "b:" val)] (raw "vim.b.${val}") - else if lib.hasPrefix "v:" val then lib.setAttrByPath ["vim" "v" (lib.removePrefix "v:" val)] (raw "vim.v.${val}") - else if lib.hasPrefix "w:" val then lib.setAttrByPath ["vim" "w" (lib.removePrefix "w:" val)] (raw "vim.w.${val}") - else if lib.hasPrefix "t:" val then lib.setAttrByPath ["vim" "t" (lib.removePrefix "t:" val)] (raw "vim.t.${val}") - else if lib.hasPrefix "v:" val then lib.setAttrByPath ["vim" "v" (lib.removePrefix "v:" val)] (raw "vim.v.${val}") - else lib.setAttrByPath ["vim" "g" val] (raw "vim.g.${val}"); - setPath = path: key: val: if builtins.isAttrs val - then (builtins.mapAttrs (setPath "${path}${key}.") val) // { __kind = "var"; _name = "${path}${key}"; } - else val; - opts = (lib.splitString "\n" (builtins.readFile ./vim-opts.txt)); - vars = (lib.splitString "\n" (builtins.readFile ./vim-vars.txt)); - zip = x: if x == [] then {} else lib.recursiveUpdate (zip (builtins.tail x)) (builtins.head x); - patch = builtins.mapAttrs (k: v: if k == "vim" then v // { - inspect = process' { - type = "function"; - arity = 2; - value = "vim.inspect"; - }; - cmd = process' { - type = "function"; - arity = 1; - value = "vim.cmd"; - }; - fn = (if v?fn then v.fn else {}) // { - visualmode = { - type = "function"; - arity = 0; - value = "vim.fn.visualmode"; - }; - }; - } else v); -in - patch (builtins.mapAttrs (setPath "") - (zip ( - (map process defs) - ++ (map process (map (x: x // {value = "vim" + (lib.removePrefix "vim.shared" x.value); }) (builtins.filter ({value,...}: lib.hasPrefix "vim.shared" value) defs))) - ++ (map (processOpt "o") opts) - ++ (map (processOpt "opt") opts) - ++ (map processVar vars) - ))) +{ stdenvNoCC +, lib +, neovim-unwrapped +, neovimUtils +, lua51Packages +, wrapNeovimUnstable +, call +, substituteAll +, plugins +# , extraLuaPackages ? [] +, ... }: + +let update = self: prefix: lib.mapAttrs (k: v: let + v' = update self prefix v; + in (if builtins.isAttrs v && v?__kind then ( + if v.__kind == "rec" then + lib.attrByPath (lib.splitString "." v.path) self + else if v.__kind == "var" && v._type == "function" then + (args: if args == "GET_INFO" then v' else call v' args) + else v' + ) else if builtins.isAttrs v then v' + else if prefix != "" && k == "_name" then + (if v == "" then prefix else "${prefix}.${v}") + else v)); +data = builtins.fromJSON (builtins.readFile ./vim-defs.json); +result = update result "" data; +config = neovimUtils.makeNeovimConfig { + extraLuaPackages = p: [ p.cjson ]; + # inherit extraLuaPackages; + plugins = map (plugin: if plugin?plugin then {plugin=plugin.plugin;} else {inherit plugin;}) plugins; +}; +neovim = wrapNeovimUnstable neovim-unwrapped config; +getReqAttrs = name: builtins.fromJSON (builtins.readFile (stdenvNoCC.mkDerivation { + phases = [ "installPhase" ]; + name = "neovim-require-${name}.json"; + dumpPlugin = substituteAll { + src = ./dump_plugin.lua; + package = name; + }; + nativeBuildInputs = [ neovim ]; + installPhase = '' + export HOME="$TMPDIR" + nvim --headless -S $dumpPlugin -i NONE -u NONE -n -c 'echo""|qall!' 2>$out + ''; +})); +req = name: let result = update result "require(\"${name}\")" (getReqAttrs name); in result; +_reqbind = name: varname: let result = update result "${varname}" (getReqAttrs name); in result; +in result // { + inherit req _reqbind; +} diff --git a/home/common/nvim/vim-opts.txt b/home/common/nvim/vim-opts.txt deleted file mode 100644 index 75a5d34..0000000 --- a/home/common/nvim/vim-opts.txt +++ /dev/null @@ -1,354 +0,0 @@ -all -aleph -arabic -arabicshape -allowrevins -ambiwidth -autochdir -autoindent -autoread -autowrite -autowriteall -background -backspace -backup -backupcopy -backupdir -backupext -backupskip -belloff -binary -bomb -breakat -breakindent -breakindentopt -bufhidden -buflisted -buftype -casemap -cdhome -cdpath -cedit -channel -charconvert -cindent -cinkeys -cinoptions -cinwords -cinscopedecls -clipboard -cmdheight -cmdwinheight -colorcolumn -columns -comments -commentstring -compatible -complete -concealcursor -conceallevel -completefunc -completeopt -confirm -copyindent -cpoptions -cscopepathcomp -cscopeprg -cscopequickfix -cscoperelative -cscopetag -cscopetagorder -cscopeverbose -cursorbind -cursorcolumn -cursorline -cursorlineopt -debug -define -delcombine -dictionary -diff -diffexpr -diffopt -digraph -directory -display -eadirection -edcompatible -emoji -encoding -endofline -equalalways -equalprg -errorbells -errorfile -errorformat -eventignore -expandtab -exrc -fileencoding -fileencodings -fileformat -fileformats -fileignorecase -filetype -fillchars -fixendofline -foldclose -foldcolumn -foldenable -foldexpr -foldignore -foldlevel -foldlevelstart -foldmarker -foldmethod -foldminlines -foldnestmax -foldopen -foldtext -formatexpr -formatoptions -formatlistpat -formatprg -fsync -gdefault -grepformat -grepprg -guicursor -guifont -guifontwide -helpfile -helpheight -helplang -hidden -highlight -history -hkmap -hkmapp -hlsearch -icon -iconstring -ignorecase -iminsert -imsearch -inccommand -include -includeexpr -incsearch -indentexpr -indentkeys -infercase -insertmode -isfname -isident -iskeyword -isprint -joinspaces -jumpoptions -keymap -keymodel -keywordprg -langmap -langmenu -langnoremap -langremap -laststatus -lazyredraw -linebreak -lines -linespace -lisp -lispwords -list -listchars -loadplugins -magic -makeef -makeencoding -makeprg -matchpairs -matchtime -maxcombine -maxfuncdepth -maxmapdepth -maxmempattern -menuitems -mkspellmem -modeline -modelineexpr -modelines -modifiable -modified -more -mouse -mousefocus -mousemodel -mousemoveevent -mousescroll -mousetime -nrformats -number -numberwidth -omnifunc -operatorfunc -packpath -paragraphs -paste -pastetoggle -patchexpr -patchmode -path -preserveindent -previewheight -previewwindow -printdevice -printencoding -printexpr -printfont -printheader -printmbcharset -printmbfont -printoptions -prompt -pumblend -pumheight -pumwidth -pyxversion -quickfixtextfunc -quoteescape -readonly -redrawdebug -redrawtime -regexpengine -relativenumber -remap -report -revins -rightleft -rightleftcmd -ruler -rulerformat -runtimepath -scroll -scrollback -scrollbind -scrolljump -scrolloff -scrollopt -sections -secure -selection -selectmode -sessionoptions -shada -shadafile -shell -shellcmdflag -shellpipe -shellquote -shellredir -shelltemp -shellxquote -shellxescape -shiftround -shiftwidth -shortmess -showbreak -showcmd -showfulltag -showmatch -showmode -showtabline -sidescroll -sidescrolloff -signcolumn -smartcase -smartindent -smarttab -softtabstop -spell -spellcapcheck -spellfile -spelllang -spellsuggest -spelloptions -splitbelow -splitright -startofline -statusline -suffixes -suffixesadd -swapfile -switchbuf -synmaxcol -syntax -tagfunc -tabline -tabpagemax -tabstop -tagbsearch -tagcase -taglength -tagrelative -tags -tagstack -termbidi -termguicolors -termpastefilter -terse -textwidth -thesaurus -thesaurusfunc -tildeop -timeout -timeoutlen -title -titlelen -titleold -titlestring -ttimeout -ttimeoutlen -ttyfast -undodir -undofile -undolevels -undoreload -updatecount -updatetime -varsofttabstop -vartabstop -verbose -verbosefile -viewdir -viewoptions -virtualedit -visualbell -warn -whichwrap -wildchar -wildcharm -wildignore -wildignorecase -wildmenu -wildmode -wildoptions -winaltkeys -winbar -winblend -winhighlight -window -winheight -winfixheight -winfixwidth -winminheight -winminwidth -winwidth -wrap -wrapmargin -wrapscan -write -writeany -writebackup -writedelay - diff --git a/home/common/nvim/vim-vars.txt b/home/common/nvim/vim-vars.txt deleted file mode 100644 index 789009c..0000000 --- a/home/common/nvim/vim-vars.txt +++ /dev/null @@ -1,140 +0,0 @@ -NvimTreeRequired -NvimTreeSetup -b:autopairs_keymaps -b:changedtick -b:nvim-autopairs -colors_name -did_indent_on -did_load_filetypes -did_load_ftplugin -ft_ignore_pat -loaded_2html_plugin -loaded_clipboard_provider -loaded_cmp -loaded_devicons -loaded_gzip -loaded_man -loaded_matchit -loaded_matchparen -loaded_netrw -loaded_netrwPlugin -loaded_node_provider -loaded_python_provider -loaded_remote_plugins -loaded_shada_plugin -loaded_sleuth -loaded_spellfile_plugin -loaded_tarPlugin -loaded_tutor_mode_plugin -loaded_zipPlugin -lspconfig -lua_subversion -lua_version -markdown_fenced_languages -markdown_minlines -matchparen_insert_timeout -matchparen_timeout -nvim_web_devicons -python3_host_prog -ruby_host_prog -syntax_on -system_remote_plugins -v:_null_blob -v:_null_dict -v:_null_list -v:_null_string -v:argv -v:beval_bufnr -v:beval_col -v:beval_lnum -v:beval_text -v:beval_winid -v:beval_winnr -v:char -v:charconvert_from -v:charconvert_to -v:cmdarg -v:cmdbang -v:collate -v:completed_item -v:count -v:count1 -v:ctype -v:dying -v:echospace -v:errmsg -v:errors -v:event -v:exception -v:exiting -v:false -v:fcs_choice -v:fcs_reason -v:fname -v:fname_diff -v:fname_in -v:fname_new -v:fname_out -v:folddashes -v:foldend -v:foldlevel -v:foldstart -v:hlsearch -v:insertmode -v:key -v:lang -v:lc_time -v:lnum -v:lua -v:mouse_col -v:mouse_lnum -v:mouse_win -v:mouse_winid -v:msgpack_types -v:null -v:numbermax -v:numbermin -v:numbersize -v:oldfiles -v:operator -v:option_command -v:option_new -v:option_old -v:option_oldglobal -v:option_oldlocal -v:option_type -v:prevcount -v:profiling -v:progname -v:progpath -v:register -v:scrollstart -v:searchforward -v:servername -v:shell_error -v:statusmsg -v:stderr -v:swapchoice -v:swapcommand -v:swapname -v:t_blob -v:t_bool -v:t_dict -v:t_float -v:t_func -v:t_list -v:t_number -v:t_string -v:termresponse -v:testing -v:this_session -v:throwpoint -v:true -v:val -v:version -v:vim_did_enter -v:warningmsg -v:windowid -vimsyn_embed -zipPlugin_ext - diff --git a/home/common/options.nix b/home/common/options.nix index cd6525b..388ae4a 100644 --- a/home/common/options.nix +++ b/home/common/options.nix @@ -1,5 +1,15 @@ { lib, config, ... }: with lib; { + options.rustAnalyzerAndroidSettings = mkOption { + type = with types; attrs; + description = "Additional cargo arguments for rust-analyzer's RustAndroid command"; + # TODO: create a neovim plugin or edit an existing one for workspace-specific config + default = { + rust-analyzer = { + cargo.target = "x86_64-linux-android"; + }; + }; + }; options.terminals = mkOption { type = with types; listOf str; description = "terminal kinds (possible values are alacritty, urxvt, kitty, foot)"; diff --git a/home/flake.nix b/home/flake.nix index f623d15..05769d3 100644 --- a/home/flake.nix +++ b/home/flake.nix @@ -26,7 +26,13 @@ pkgs = nixpkgs.legacyPackages."x86_64-linux"; modules = [ nur.nixosModules.nur - { nixpkgs.overlays = [ nix-gaming.overlays.default ]; } + { nixpkgs.overlays = [ + nix-gaming.overlays.default + (self: super: { + clang_latest = super.clang_15; + clang-tools_latest = super.clang-tools_15; + }) + ]; } ./hosts/nixmsi.nix (getPriv "nixmsi") ]; diff --git a/home/hosts/nixmsi.nix b/home/hosts/nixmsi.nix index fabccb9..172dcaf 100644 --- a/home/hosts/nixmsi.nix +++ b/home/hosts/nixmsi.nix @@ -49,8 +49,14 @@ ''; }; in { STEAM_EXTRA_COMPAT_TOOLS_PATHS = "${proton-ge}"; + CARGO_PROFILE_DEV_INCREMENTAL = "true"; + RUSTC_LINKER = "${pkgs.clang_latest}/bin/clang"; + RUSTFLAGS = "-C link-arg=--ld-path=${pkgs.mold}/bin/mold"; + CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER = "${pkgs.clang_latest}/bin/clang"; + CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS = "-C link-arg=--ld-path=${pkgs.mold}/bin/mold"; }; home.packages = with pkgs; [ + mold (ghidra.overrideAttrs (old: { patches = old.patches ++ [ ../common/ghidra-stdcall.patch ]; })) cutter @@ -65,7 +71,7 @@ virtmanager gimp krita blender tdesktop - clang rustc rustfmt cargo clippy + clang_latest rustc rustfmt cargo clippy # waiting until the PR gets merged (looking-glass-client.overrideAttrs (old: { version = "B6";