Fix #3114 (implement CSI in the tmux/screen plugin)

This commit is contained in:
mathieui 2016-06-04 23:03:40 +02:00
parent bb3ddde9f6
commit 46d3da365c

View file

@ -93,6 +93,10 @@ class Plugin(BasePlugin, pyinotify.Notifier):
self.attached = attached
status = 'available' if self.attached else 'away'
self.core.command_status(status)
if self.attached:
self.core.xmpp.plugin['xep_0352'].send_active()
else:
self.core.xmpp.plugin['xep_0352'].send_inactive()
class HandleScreen(pyinotify.ProcessEvent):
def my_init(self, **kwargs):