From f2f3d4bdfdeb5b45b7df49a56a636d2925f6d494 Mon Sep 17 00:00:00 2001 From: liquidz Date: Mon, 12 Feb 2024 23:34:32 +0900 Subject: [PATCH] fix: Fix echo-text in nvim server to work correctly --- src/elin/component/server/nvim.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elin/component/server/nvim.clj b/src/elin/component/server/nvim.clj index 9120210..a004f97 100644 --- a/src/elin/component/server/nvim.clj +++ b/src/elin/component/server/nvim.clj @@ -74,7 +74,7 @@ (e.p.rpc/notify! this ["nvim_call_function" [method params]])) (echo-text [this text] - (e.p.rpc/notify! this ["nvim_echo" [[text "Normal"]] false {}])) + (e.p.rpc/notify! this ["nvim_echo" [[[text "Normal"]] false {}]])) (echo-message [this text] (e.p.rpc/echo-message this text "Normal"))