Skip to content

Commit

Permalink
Try to commit characters unhandled by IBus engine
Browse files Browse the repository at this point in the history
  • Loading branch information
lewtds committed May 5, 2013
1 parent c37ae57 commit 6d08d8a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sublimeibusplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,8 @@ def ibus_process_key_event_cb(self, id_no, handled):
if cmd is not None:
status.view.run_command(cmd.get('command', None),
cmd.get('args', None))
elif len(status.key) == 1:
self.ibus_commit_text_cb(id_no, status.key)


class IbusToggleCommand(sublime_plugin.TextCommand):
Expand Down

0 comments on commit 6d08d8a

Please sign in to comment.