Skip to content

Commit

Permalink
fix: Fix echo-text in vim 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 f2f3d4b commit a8661fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elin/component/server/vim.clj
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
(e.p.rpc/notify! this ["call" method params]))

(echo-text [this text]
(e.p.rpc/notify! this ["ex" "echo" (format "'%s'" text)]))
(e.p.rpc/notify! this ["ex" (format "echo '%s'" text)]))

(echo-message [this text]
(e.p.rpc/echo-message this text "Normal"))
Expand Down

0 comments on commit a8661fc

Please sign in to comment.