Fix //
This commit is contained in:
parent
89ed926096
commit
7a9b9edee8
2 changed files with 4 additions and 0 deletions
|
@ -4,9 +4,11 @@ http://codingteam.net/project/poezio/roadmap
|
||||||
|
|
||||||
* Poezio 0.7 - dev
|
* Poezio 0.7 - dev
|
||||||
Codename ”Koshie & Mathieui”
|
Codename ”Koshie & Mathieui”
|
||||||
|
- Library changed from xmpppy to SleekXMPP
|
||||||
- Introduce the roster
|
- Introduce the roster
|
||||||
- One to one conversations
|
- One to one conversations
|
||||||
- Roster search
|
- Roster search
|
||||||
|
- Add/remove/accept/deny contact in the roster
|
||||||
- Resizable mini-buffer displaying various informations
|
- Resizable mini-buffer displaying various informations
|
||||||
- All colors can be changed with a theme file
|
- All colors can be changed with a theme file
|
||||||
- /say and // commands
|
- /say and // commands
|
||||||
|
|
|
@ -248,6 +248,8 @@ class ChatTab(Tab):
|
||||||
def on_enter(self):
|
def on_enter(self):
|
||||||
txt = self.input.key_enter()
|
txt = self.input.key_enter()
|
||||||
if not self.execute_command(txt):
|
if not self.execute_command(txt):
|
||||||
|
if txt.startswith('//'):
|
||||||
|
txt = txt[1:]
|
||||||
self.command_say(txt)
|
self.command_say(txt)
|
||||||
|
|
||||||
def command_say(self, line):
|
def command_say(self, line):
|
||||||
|
|
Loading…
Reference in a new issue