We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17fbbcd commit d577f02Copy full SHA for d577f02
plugin/vimchat.vim
@@ -1354,9 +1354,9 @@ class VimChatScope:
1354
#}}}
1355
#{{{ notify
1356
def notify(self, jid, msg, groupChat):
1357
- # Important to keep this print statement. As a side effect, it
1358
- # refreshes the buffer so the new message shows up.
1359
- # TODO: try replacing print with echo so :messages doesn't get polluted
+ # Important to keep this echo statement. As a side effect, it
+ # refreshes the buffer so the new message shows up. Need to find
+ # a better solution though.
1360
vim.command("echo 'Message Received from: " + jid.replace("'", "''")
1361
+ "'")
1362
0 commit comments