mirror of
https://github.com/Myzel394/jsonfly.nvim.git
synced 2025-06-18 04:05:26 +02:00
chore: apply stylua
This commit is contained in:
parent
895e9adfdf
commit
0e5158a8d4
@ -208,7 +208,9 @@ end
|
||||
---@param name string
|
||||
---@return boolean
|
||||
function M:is_module_available(name)
|
||||
return pcall(function() require(name) end) == true
|
||||
return pcall(function()
|
||||
require(name)
|
||||
end) == true
|
||||
end
|
||||
|
||||
return M
|
||||
|
@ -61,7 +61,7 @@ local DEFAULT_CONFIG = {
|
||||
backend = "lsp",
|
||||
use_cache = 500,
|
||||
commands = {
|
||||
add_key = {"i", "<C-a>"},
|
||||
add_key = { "i", "<C-a>" },
|
||||
copy_jsonpath = {
|
||||
"i",
|
||||
"<C-j>",
|
||||
@ -69,9 +69,9 @@ local DEFAULT_CONFIG = {
|
||||
---@param prompt_bufnr number
|
||||
function(path, prompt_bufnr)
|
||||
vim.fn.setreg("+", path)
|
||||
end
|
||||
}
|
||||
}
|
||||
end,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
local global_config = {}
|
||||
@ -112,7 +112,7 @@ local function show_picker(entries, buffer, xopts)
|
||||
insert:insert_new_key(entries, key_descriptor, buffer)
|
||||
end)
|
||||
|
||||
if global_config.commands.copy_jsonpath and utils:is_module_available("jsonpath") then
|
||||
if global_config.commands.copy_jsonpath and utils:is_module_available("jsonpath") then
|
||||
map(
|
||||
global_config.commands.copy_jsonpath[1],
|
||||
global_config.commands.copy_jsonpath[2],
|
||||
@ -122,13 +122,16 @@ if global_config.commands.copy_jsonpath and utils:is_module_available("jsonpath"
|
||||
local current_picker = action_state.get_current_picker(prompt_bufnr)
|
||||
local selection = current_picker:get_selection()
|
||||
|
||||
local path = jsonpath.get(vim.treesitter.get_node({
|
||||
local path = jsonpath.get(
|
||||
vim.treesitter.get_node({
|
||||
bufnr = buffer,
|
||||
pos = {
|
||||
selection.lnum - 1,
|
||||
selection.index,
|
||||
}
|
||||
}), buffer)
|
||||
},
|
||||
}),
|
||||
buffer
|
||||
)
|
||||
|
||||
if path then
|
||||
global_config.commands.copy_jsonpath[3](path, prompt_bufnr)
|
||||
|
Loading…
x
Reference in New Issue
Block a user