From 694569b5ecf8f367e9190617a077e042451785ef Mon Sep 17 00:00:00 2001 From: ajet Date: Mon, 11 Aug 2025 09:48:32 -0900 Subject: [PATCH] rename --- fnl/conjure-expand/main.fnl | 2 +- lua/conjure-expand/main.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fnl/conjure-expand/main.fnl b/fnl/conjure-expand/main.fnl index fac62a8..6ebdf77 100644 --- a/fnl/conjure-expand/main.fnl +++ b/fnl/conjure-expand/main.fnl @@ -83,4 +83,4 @@ (= 0 nvim.g.conjure_macroexpand_disable_mappings)) (nvim.ex.autocmd :FileType "clojure" - (bridge.viml->lua :conjure-macroreplace.main :add-buf-mappings)))) + (bridge.viml->lua :conjure-expand.main :add-buf-mappings)))) diff --git a/lua/conjure-expand/main.lua b/lua/conjure-expand/main.lua index 266b3da..9086272 100644 --- a/lua/conjure-expand/main.lua +++ b/lua/conjure-expand/main.lua @@ -107,7 +107,7 @@ end _2amodule_2a["add-buf-mappings"] = add_buf_mappings local function init() if (not nvim.g.conjure_macroexpand_disable_mappings or (0 == nvim.g.conjure_macroexpand_disable_mappings)) then - return nvim.ex.autocmd("FileType", "clojure", bridge["viml->lua"]("conjure-macroreplace.main", "add-buf-mappings")) + return nvim.ex.autocmd("FileType", "clojure", bridge["viml->lua"]("conjure-expand.main", "add-buf-mappings")) else return nil end