diff options
| author | Mattias Andrée <maandree@operamail.com> | 2013-09-20 13:25:15 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2013-09-20 13:25:15 +0200 |
| commit | 7617352750924996037c8a293e125e3c7f7ff1fa (patch) | |
| tree | a2a6373d025af1aab42f99478ba603d1d1adf8d3 | |
| parent | m style (diff) | |
| download | pytagomacs-7617352750924996037c8a293e125e3c7f7ff1fa.tar.gz pytagomacs-7617352750924996037c8a293e125e3c7f7ff1fa.tar.bz2 pytagomacs-7617352750924996037c8a293e125e3c7f7ff1fa.tar.xz | |
list functions with signatures of commands to wrap for undo history
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -rw-r--r-- | src/editor.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/editor.py b/src/editor.py index 5148bac..f8e21ef 100644 --- a/src/editor.py +++ b/src/editor.py @@ -109,6 +109,18 @@ class Jump(): ## should not be a timer waits for the user to idle. ## +## Editing methods in Line to wrap for undo history +# copy(self):bool +# cut(self):bool +# kill(self):bool +# delete(self):bool +# erase(self):bool +# yank(self):bool +# yank_cycle(self):bool +# move_point(self, delta):bool +# swap_mark(self):bool +# override(self, insert, override = True):void + class TextArea(): ''' GNU Emacs alike text area |
