git @ Cat's Eye Technologies tideay / eba779d
Implement rewriting end of string left of cursor with <tab>! catseye 12 years ago
2 changed file(s) with 59 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
3131 -----
3232
3333 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)
3535 and I'm trying to start using yaedit... or rather tideay... because it's
3636 easier to hack. (probably.)
3737
4747 bit of a hack, and hashbang-sniffing will improve in the future.)
4848 * No tooltips (they don't show up on hover for me anyway.) Controls are
4949 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
5158
5259 Wishlist
5360 --------
6976 ### editing ###
7077
7178 * 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.
7579 * Find should support case-sensitive and maybe whole-world-only search.
7680 * 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.
7882 * Mark and move to mark (like Ctrl+F2/F2 in SciTE)
7983
8084 ### buffers ###
100104
101105 [pfh]: http://www.logarithmic.net/pfh/
102106 [yaedit]: http://www.logarithmic.net/pfh/yaedit
107 [SciTE]: http://www.scintilla.org/SciTE.html
00 #!/usr/bin/env python
1 # encoding: UTF-8
12
23 # Copyright (C) 2007 Paul Harrison
34 # This program is free software; you can redistribute it and/or modify
196197 prefix = prefix[:i]
197198 break
198199 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
199238
200239
201240 class Editor(object):
680719 if not editor:
681720 return False
682721 buffer = editor.get_buffer()
722
683723 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))
685732 buffer.end_user_action()
686733 return True
687734 self.window.connect('key_press_event', on_key_press_event)