Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pr/set status argument fix #17

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
3 changes: 1 addition & 2 deletions plugin/vimchat.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,6 @@ class VimChatScope:
def beginChatFromBuddyList(self):
account, toJid = self.getBuddyListItem('jid')
[jid,user,resource] = self.getJidParts(toJid)

buf = VimChat.beginChat(account, jid)
if not buf:
#print "Error getting buddy info: " + jid
Expand Down Expand Up @@ -1686,7 +1685,7 @@ com! VimChatJoinGroupChat py VimChat.openGroupChat()
com! VimChatOtrVerifyBuddy py VimChat.otrVerifyBuddy()
com! VimChatOtrSMPRespond py VimChat.otrSmpRespond()
com! VimChatOtrGenerateKey py VimChat.otrGenerateKey()
com! -nargs=0 VimChatSetStatus py VimChat.setStatus(<args>)
com! -nargs=* VimChatSetStatus py VimChat.setStatus(<args>)
com! VimChatShowStatus py VimChat.showStatus()
com! VimChatJoinChatroom py VimChat.joinChatroom()
autocmd! VIMLeave * :VimChatStop
Expand Down