prototype.mp4
This plugin is still in Prototype Phase! With features hasn't been developed yet! Such as:
- End-user customizations (window location, highlight groups, etc...)
- Add / Manage Children and Siblings nodes
At this current state, this plugin is useful for simple queries that doesn't deal with
multi-layered children / sibling nodes. These features will be gradually developed as
the demand of more complex queries increases.
Packer:
use("ziontee113/query-secretary")
By default, Query Window at the center of the editor.
If you want to change how the query window options:
require('query-secretary').setup({
open_win_opts = {
row = 0,
col = 9999,
width = 50,
height = 15,
},
-- other options you can customize
buf_set_opts = {
tabstop = 2,
softtabstop = 2,
shiftwidth = 2,
}
capture_group_names = { "cap", "second", "third" } -- when press "c"
predicates = { "eq", "any-of", "contains", "match", "lua-match" } -- when press "p"
visual_hl_group = "Visual" -- when moving cursor around
-- here are the default keymaps
keymaps = {
close = { "q", "Esc" },
next_predicate = { "p" },
previous_predicate = { "P" },
remove_predicate = { "d" },
toggle_field_name = { "f" },
yank_query = { "y" },
next_capture_group = { "c" },
previous_capture_group = { "C" },
}
})
The following setup
will open Query Window at your cursor
with width = 50
and height = 15
require('query-secretary').setup({
open_win_opts = {
relative = "cursor",
width = 50,
height = 15,
},
})
Define your keymap:
vim.keymap.set("n", "your_keymap_here", function()
require("query-secretary").query_window_initiate()
end, {})
After putting your cursor where you want your query to end, press your_keymap
to bring up the Query Window.
Here are the default keymaps when you're in the Query Window (customizable with setup function):
q
/Esc
close the Query Windowf
toggle current node'sfield_name
p
/P
toggle current node'spredicate
d
remove current node'spredicate