terminology/TODO

60 lines
3.2 KiB
Plaintext
Raw Normal View History

2012-06-15 23:23:20 -07:00
here's a short list of things i think we can do in the short to medium term to
make it a first-class terminal:
[ ] edje objects need to be able to swallow sub-objects (and specify
group, text, signals etc.)
2013-04-18 08:09:26 -07:00
[ ] vt100-compatibility: pass all of http://invisible-island.net/vttest/ tests!
2012-06-15 23:23:20 -07:00
[ ] general input mode handling improvements (keypad, other key
input, etc.)
2013-04-18 08:09:26 -07:00
[ ] tyls code is just horrible. fix it.
[ ] better info in tyls -m
[ ] tabs: reordering should be possible
[ ] splits need to size only by steps in font size (elm feature)
[ ] blink and blink2 attributes need to be supported
2012-06-15 23:23:20 -07:00
[ ] scrollbar (elm scroller that mirrors the term smart size/position
- gives us fingerscroll - layer on top of term smart, stick
invisible rect inside to track for scrolling etc.)
2013-04-29 19:40:05 -07:00
[ ] selection mode mirrors entry style for touch displays (handle
on_hold flags, etc.)
[ ] fast text/regex searching similar to urxvt
2012-07-11 07:51:53 -07:00
[ ] search in terminal (and keep highlighting until search cleared)
[ ] logging of terminal to file
2013-04-18 08:09:26 -07:00
[ ] number recognition with base (hex/dec/oct/binary etc.) conversion
2013-04-29 19:40:05 -07:00
with some overlay/popup on mouseover
2012-08-24 18:53:13 -07:00
[ ] dnd of file to term offer to paste path, with escapes or paste file
2012-07-11 07:51:53 -07:00
content (if text) with or without escaping
[ ] media - improve position slider to track position as u play
2013-03-19 04:41:11 -07:00
[ ] improve look of meida controls (youtube like better with mouse move show)
2012-08-24 18:53:13 -07:00
[ ] make media controls an api where controls are provided by the media
object owner so they can be custom placed/swallowed/handled better
[ ] media controls need to have zoom controls for all formats
[ ] media controls need next/prev page controls for paged media (ps/pdf)
[ ] add better handling of music files (with just playbar+vol, no image)
2013-04-29 19:40:05 -07:00
[ ] display queue of media visually and allow deletion from queue etc.
2012-08-24 18:53:13 -07:00
[ ] add option for cjk double width mode
2012-10-08 01:29:02 -07:00
[ ] possible evas font problem with proggy fonts: http://www.proggyfonts.com/
2013-04-17 09:08:06 -07:00
[ ] key controls to begin/change/end selections
[ ] key controls to hilight visible links and select them
2012-06-15 23:23:20 -07:00
things in future to make it totally kick-butt:
2013-04-29 19:40:05 -07:00
[ ] maybe want a new "tab" sel width that slides/fades in on mouseover on top
2013-03-19 04:41:11 -07:00
that lists miniature thumbs like current sel does but in a linear
way along the top
2013-04-12 13:22:15 -07:00
[ ] support double-width when reflowing text on resize
2012-06-15 23:23:20 -07:00
[ ] track mem and iowait and cpu stats for child procs and their
children and display them as little overlays in the terminal so u
know if your "grep -r /" is cpu or io bound and what is eating up
all your cpu cycles or causing a tonne of hdd interrupts etc. -
send results of these stats to theme with messages much like
cpufreq, battery etc. do in e17 so theme can display as bars,
dials or anything it likes (text, led's etc. too).
2013-04-29 19:40:05 -07:00
[ ] remember split layouts/tabs and be able to restore them and at least as
2012-06-15 23:23:20 -07:00
much of child processes as the term can manage reasonably reliably
[ ] split it out into a library - maybe just as part of elementary and
make a terminal widget where you can specify your own read/write
funcs for the term fd etc. so u can make a custom bit of code that
uses the terminal widget as if it were stdin/out but just as
loopback within the app (ie don't exec process - just create pty
and offer read/write to/from it)