- [ ] anything marked [1]
- [ ] fix bugs
- [ ] core features
+- [X] keystroke to open extra-header in notmuch - K-X
- [ ] markdown viewer and editor
- [ ] git log view with rebase and reword options
- [ ] git-commit command which presents the patch and allows it to be
- [X] transparent images appear in email with horiz lines
- [ ] Replying to w3m/html mail results in unsightly markup in reply
+- [ ] converting email parts with external code should be async
+- [ ] fill:end-re should default to fill:start-re
+- [ ] md-mode should set the fill re-s don't rely on config
+- [ ] config.py should load from $HOME/.config/edlib/config.py
+ exec(read())
+- [ ] lang-python should put each mode in a separate module
+ Maybe PyImport_ExecCodeModuleEx() after reading and compile()ing
+ the source file. Or set up path to find edlib modules.
- [ ] redefining doc:char but not doc:content in mail-compose causes
search to get confused. What should we do?
-- [ ] why doesn't doc-to-text auto-load
+ Don't redefine doc:char. Enable mark-moving notification on point
+ and on 'refresh' move to appropriate end of a marker if on one
+- [ ] use mark-moving on point to step over "quoted lines"
+- [X] why doesn't doc-to-text auto-load - because only attach-
+ autoloads. I need a complete redesign of autoload
- [ ] use mimetypes.guess_type() to interpret filenames in email attachments??
- [ ] don't allow non-text email parts to appear as text. Maybe hex??
- [ ] word-wrap all text in email display
- [ ] opening file with e.g. 200,000 lines is very slow - because of word-count.
Always do word-count async.
- [ ] moving in a big file is slow
-- [ ] always do word-count async.
- [ ] make prefix-fast-search work for case-insensitive matches??
- [ ] email: urls should not be followed unless they are visible.
Maybe display in the message window, which might be made larger
Core features
-------------
+- [ ] allow doc:get-attr to get a pane attribute if there is no content attribute.
- [ ] design a way for a keystroke to interrupt a long-running function.
- [ ] extend Draw:measure protocol to allow constant-width-fonts to
cannot-scale displays can be detected and measurement optimised for.
- [ ] move to separate git repo and document well.
- [ ] review return code of rxl_advance(). What should be
returned if a flag allowed a match, but the char didn't.
+- [ ] support backward search by compiling expression backwards
### popup
### lang-python
+- [ ] array index should allow two args, second being a mark for
+ doc:get-attr etc.
- [ ] should be able to test if a mark is NULL or Freed
- [ ] should Efallthrough be an exception?
- [ ] Log loading of modules - Can I provide version info?
v.call("compose-email:attach", fn, "message/rfc822")
return 1
+ def handle_mesg_cmd(self, key, focus, mark, num, **a):
+ "handle-list/doc:char-X"
+ # general commands to be directed to message view
+ if self.message_pane:
+ self.message_pane.call(key, num)
+ return 1
+
def tag_ok(self, t):
for c in t:
if not (c.isupper() or c.islower() or c.isdigit()):
return self.handle_vis(focus, mark, "full")
def handle_toggle_extras(self, key, focus, mark, **a):
- "handle-list/Mouse-Activate:email-extras/email:select:extras"
+ "handle-list/Mouse-Activate:email-extras/email:select:extras/doc:char-X"
+ if not mark:
+ # a mark at the first "sep" part will identify the headers
+ mark = edlib.Mark(focus)
+ focus.call("doc:email-step-part", mark, 1)
self.handle_vis(focus, mark, "extras")
if self.extra_headers:
return 1