-
Notifications
You must be signed in to change notification settings - Fork 700
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
Fix /part command #222
Fix /part command #222
Conversation
Fixes the /part command closing the wrong window. The current implementation simply passes all arguments to slate, which ended up parting every arguments. This changes the command to `/part message`, and always parts the current window. This will be fixed further once irc-framework is merged.
@maxpoulin64, so it means that if the user is currently on channel Correct me if I'm wrong but the current implementation of
Am I being mistaken in understanding your change? |
Actually that's precisely what this fixes. I will change it to |
Makes sense. So now, if I type |
Yes, unfortunately. That will have to wait for irc-fw however, because I need access to Note that the old behavior was to try to quit everything, so |
Fine, even if not perfect, definitely much better than the current state then :-) |
This messes up dark themes, or really any theme that does not use #222 as body color...
Fixes the /part command closing the wrong window. The current implementation simply passes all arguments to slate, which ended up parting every arguments (and never sending the part message)
This changes the command to
/part message
, and always parts the current window. This will be fixed further once irc-framework is merged.