Skip to content

Commit

Permalink
fix: Fix echo-text in nvim server to work correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz committed Feb 12, 2024
1 parent d596ba1 commit f2f3d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elin/component/server/nvim.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit f2f3d4b

Please sign in to comment.