We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b0130f commit cbaa9c4Copy full SHA for cbaa9c4
src/augtool.c
@@ -853,9 +853,12 @@ static void setup_lua(void) {
853
lua_register(LS, "setm", lua_aug_setm);
854
// lua_register(LS, "span", lua_aug_span);
855
lua_register(LS, "insert", lua_aug_insert);
856
+ lua_register(LS, "ins", lua_aug_insert); // alias
857
lua_register(LS, "rm", lua_aug_rm);
858
lua_register(LS, "mv", lua_aug_mv);
859
+ lua_register(LS, "move", lua_aug_mv); // alias
860
lua_register(LS, "cp", lua_aug_cp);
861
+ lua_register(LS, "copy", lua_aug_cp); // alias
862
lua_register(LS, "rename", lua_aug_rename);
863
lua_register(LS, "matches", lua_aug_matches);
864
lua_register(LS, "match", lua_aug_match);
0 commit comments