mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Do not copy a lot of lua strings (dict keys) to just strequal() them Just compare them directly to a dedicated hash function. feat(generators): HASHY McHASHFACE
53 lines
744 B
Lua
53 lines
744 B
Lua
return {
|
|
context = {
|
|
"types";
|
|
};
|
|
set_extmark = {
|
|
"id";
|
|
"end_line";
|
|
"end_col";
|
|
"hl_group";
|
|
"virt_text";
|
|
"virt_text_pos";
|
|
"virt_text_win_col";
|
|
"virt_text_hide";
|
|
"hl_eol";
|
|
"hl_mode";
|
|
"ephemeral";
|
|
"priority";
|
|
"right_gravity";
|
|
"end_right_gravity";
|
|
"virt_lines";
|
|
"virt_lines_above";
|
|
"virt_lines_leftcol";
|
|
};
|
|
keymap = {
|
|
"noremap";
|
|
"nowait";
|
|
"silent";
|
|
"script";
|
|
"expr";
|
|
"unique";
|
|
};
|
|
get_commands = {
|
|
"builtin";
|
|
};
|
|
float_config = {
|
|
"row";
|
|
"col";
|
|
"width";
|
|
"height";
|
|
"anchor";
|
|
"relative";
|
|
"win";
|
|
"bufpos";
|
|
"external";
|
|
"focusable";
|
|
"zindex";
|
|
"border";
|
|
"style";
|
|
"noautocmd";
|
|
};
|
|
}
|
|
|