Implement rewriting end of string left of cursor with <tab>!
catseye
12 years ago
31 | 31 | ----- |
32 | 32 | |
33 | 33 | A full, in-depth analysis of my history with text editors will appear here |
34 | shortly. In the meantime, know that I currently use SciTE (go ahead, laugh) | |
34 | shortly. In the meantime, know that I currently use [SciTE][] (go ahead, laugh) | |
35 | 35 | and I'm trying to start using yaedit... or rather tideay... because it's |
36 | 36 | easier to hack. (probably.) |
37 | 37 | |
47 | 47 | bit of a hack, and hashbang-sniffing will improve in the future.) |
48 | 48 | * No tooltips (they don't show up on hover for me anyway.) Controls are |
49 | 49 | documented in this README for now. |
50 | * In the editing pane, pressing the tab key inserts two spaces for now. | |
50 | * In the editing pane, pressing the tab key *rewrites* the string to | |
51 | the left of the cursor, based on some internal rewriting rules. For | |
52 | example, `--` is replaced by `—`. See the source code for the full set | |
53 | of rules. The rewriting rules implement tabs in the following way: | |
54 | * four spaces are replaced by eight spaces | |
55 | * an empty string is replaced by four spaces | |
56 | * a tab character is replaced by two tab characters | |
57 | * `^I` rewrites to tab, so you can otherwise insert a real tab character | |
51 | 58 | |
52 | 59 | Wishlist |
53 | 60 | -------- |
69 | 76 | ### editing ### |
70 | 77 | |
71 | 78 | * Typing `{<enter>` or `:<enter>` should indent the next line four spaces. |
72 | * Typing `<tab>` should "tab-complete" (rewrite) the text to the left. | |
73 | This never results in a tab character, unless a tab character is what the | |
74 | rewrite rule says to substitute in. | |
75 | 79 | * Find should support case-sensitive and maybe whole-world-only search. |
76 | 80 | * Replace found text with new text. |
77 | * ^F find should populate find-entry with selected text. | |
81 | * Ctrl+F find should populate find-entry with selected text. | |
78 | 82 | * Mark and move to mark (like Ctrl+F2/F2 in SciTE) |
79 | 83 | |
80 | 84 | ### buffers ### |
100 | 104 | |
101 | 105 | [pfh]: http://www.logarithmic.net/pfh/ |
102 | 106 | [yaedit]: http://www.logarithmic.net/pfh/yaedit |
107 | [SciTE]: http://www.scintilla.org/SciTE.html |
0 | 0 | #!/usr/bin/env python |
1 | # encoding: UTF-8 | |
1 | 2 | |
2 | 3 | # Copyright (C) 2007 Paul Harrison |
3 | 4 | # This program is free software; you can redistribute it and/or modify |
196 | 197 | prefix = prefix[:i] |
197 | 198 | break |
198 | 199 | return prefix |
200 | ||
201 | ||
202 | # not a dict, because order matters, and we iterate it anyway | |
203 | # TODO: more mathematical symbols (follow LaTeX? or HTML entities?) | |
204 | REWRITE_MAP = ( | |
205 | (u' ', u' '), | |
206 | (u'(c)', u'©'), | |
207 | (u"''", u'ˮ'), # this is a dbl-apo U+02EE. maybe primes ′ ″ ‴ instead ? | |
208 | (u'--', u'—'), | |
209 | (u'->', u'→'), | |
210 | (u'<-', u'←'), | |
211 | (u'|^', u'↑'), | |
212 | (u'|v', u'↓'), | |
213 | (u'<<', u'«'), | |
214 | (u'>>', u'»'), | |
215 | (u'[[', u'⟦'), | |
216 | (u']]', u'⟧'), | |
217 | (u'<=', u'≤'), | |
218 | (u'>=', u'≥'), | |
219 | (u'/=', u'≠'), | |
220 | (u'^I', u'\t'), | |
221 | (u'u:', u'ü'), | |
222 | (u'U:', u'Ü'), | |
223 | (u'e`', u'è'), | |
224 | (u"e'", u'é'), | |
225 | (u'a`', u'à'), | |
226 | (u"a'", u'á'), | |
227 | (u'\t', u'\t\t'), | |
228 | ) | |
229 | ||
230 | ||
231 | def rewrite_text(text): | |
232 | if text == u'': | |
233 | return u' ' | |
234 | for (search, replace) in REWRITE_MAP: | |
235 | if text.endswith(search): | |
236 | return text[:-len(search)] + replace.encode('UTF-8') | |
237 | return text | |
199 | 238 | |
200 | 239 | |
201 | 240 | class Editor(object): |
680 | 719 | if not editor: |
681 | 720 | return False |
682 | 721 | buffer = editor.get_buffer() |
722 | ||
683 | 723 | buffer.begin_user_action() |
684 | buffer.insert_at_cursor(u' ', 2) | |
724 | end = buffer.get_iter_at_offset( | |
725 | buffer.get_property('cursor-position') | |
726 | ) | |
727 | start = buffer.get_iter_at_line(end.get_line()) | |
728 | text = buffer.get_text(start, end, True) | |
729 | text = rewrite_text(text) | |
730 | buffer.delete(start, end) | |
731 | buffer.insert(start, text, len(text)) | |
685 | 732 | buffer.end_user_action() |
686 | 733 | return True |
687 | 734 | self.window.connect('key_press_event', on_key_press_event) |