From df149745dcf8b303a159f1a0b0ef6ff5c5aa9106 Mon Sep 17 00:00:00 2001 From: ajet Date: Mon, 11 Aug 2025 09:41:27 -0900 Subject: [PATCH] rename --- Makefile | 2 +- plugin/conjure-expand.vim | 3 +++ plugin/conjure-macroreplace.vim | 3 --- 3 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 plugin/conjure-expand.vim delete mode 100644 plugin/conjure-macroreplace.vim diff --git a/Makefile b/Makefile index 8c03964..985ccf2 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ compile: deps/aniseed/scripts/compile.sh # Remove this if you only want Aniseed at compile time. - deps/aniseed/scripts/embed.sh aniseed conjure-macroreplace + deps/aniseed/scripts/embed.sh aniseed conjure-expand test: rm -rf test/lua diff --git a/plugin/conjure-expand.vim b/plugin/conjure-expand.vim new file mode 100644 index 0000000..e5173f2 --- /dev/null +++ b/plugin/conjure-expand.vim @@ -0,0 +1,3 @@ +if has("nvim") + lua require("conjure-expand.main").init() +endif diff --git a/plugin/conjure-macroreplace.vim b/plugin/conjure-macroreplace.vim deleted file mode 100644 index e7dc507..0000000 --- a/plugin/conjure-macroreplace.vim +++ /dev/null @@ -1,3 +0,0 @@ -if has("nvim") - lua require("conjure-macroreplace.main").init() -endif