feat(lua): add api and lua autocmds

This commit is contained in:
TJ DeVries
2021-05-28 15:45:34 -04:00
committed by bfredl
parent 1b5767aa34
commit 991e472881
38 changed files with 2888 additions and 618 deletions

View File

@@ -110,5 +110,34 @@ return {
"reverse";
"nocombine";
};
-- Autocmds
create_autocmd = {
"buffer";
"callback";
"command";
"desc";
"event";
"group";
"once";
"nested";
"pattern";
};
do_autocmd = {
"buffer";
"event";
"group";
"modeline";
"pattern";
};
get_autocmds = {
"event";
"group";
"id";
"pattern";
};
create_augroup = {
"clear";
"name";
};
}