TODO management
[wmiirc-lua.git] / TODO
blobb68b5c921648c2ca1ae37604226cbbd4e3c65abe
1 If you have any suggests I am happy to add them to the list.
3 for 0.3 release
4     - core
5         - verify required packages in wmii.lua (like lua version number)
6         - version number in the files
7         - resize windows/columns with Mod1-[+-] or Mod1-Ctrl-[hjkl]
9         - some way to get the configuration out at runtime
11         - debugging
12             - look at http://www.keplerproject.org/lualogging/
13             - make 'debug' take a filename to log to
14               ('1' and 'true' will go to stderr)
15             - log levels
17     - bundled plugins
18         - mpd: controls / volume
19         - history: 
20             - Mod1-[oi] to provide window history
21             - Mod4-[oi] to provide workspace history (vim inspired)
22         - at: use the at scheduler to implement a reminder system
23               action of 'at' or '@' for short
24               examples:
25                  alt-a @ 20:00 "message to display"
26                  alt-a @ 20:00 !xeyes
28 future
29     - core
30         - bundle xclipboard functionality (add a core/x11.so)
31         - make wmii.load_plugin() support multiple api versions
33         - Mod1-; will display a "execute lua code here" command line
34           - it would be nice if it tab completed
36         - tags starting with '@' are reserved for internal use and don't
37           display on /lbar
38         - Mod1-[ and Mod1-] to push/pop windows off a stack in a hidden
39           tag @stack
41         - figure out a better way for wmiirc to remap function in
42           wmii.lua;
43           - an option would be to give each function a name (be it an
44             event, key-binding, or action) and make them usable from
45             either so people could bind a function ring_my_bell() to an
46             event, key, or action.  Maybe...
47                 wmii.bind_event ("ring", wmii.h_ring_my_bell)
48                 wmii.bind_key ("Alt-r", wmii.h_ring_my_bell)
49                 wmii.bind_action ("ring", wmii.h_ring_my_bell)
50             it should really make no difference how the action was
51             invoked.  We could let the handler function know *how* with
52             a parameter that wmii.lua passes to it.
54         - improve logging
55           - use file in ~/.wmii-3.5/ like wmii+ruby
57     - bundled plugins
58         - 'session_manager'
59             - remember where windows are, and restart the "session" as
60               it was before
61             - global and per-view
63         - 'clipboard'
64             - remember X of the last copy/paste contents
65             - pull them up with an action
66             - see http://glipper.sourceforge.net/ for ideas/code
68         - 'messages'
69             - add action or hot-key to copy last message to xclipboard
71         - 'groups'
72             - grouping multiple windows (maybe a tag prefix, and use the
73               existing tag idea)
74               - group individually,
75               - group all in a view,
76               - group all visible
77             - sending input to all windows in that group
78             - would be useful for a cluster, etc.
80         - whereami: wireless / controls
82 vim: set ts=8 et sw=8 tw=72