BUGS
[ ] optimize drawing with tons of markups
    (laggy examples: "/e" in shakespeare, test/6, test/7)

[?] fix nested link ordering
    (right now "n" orders them in reverse)
    (*not sure if necessary!)

[ ] handle UTF-8 non-constant-length chars. (mbstowcs, wcwidth, etc)
    (have someone test using this all for japanese websites...)
    (example: line-wrap "-"s all should, but do not appear in the same column.)

[ ] sometimes forked commands don't print output? or otherwise act weird
    - `>echo "something"` will sometimes (?) not show "something".
    - the termios doesn't get reset properly on close, after this happens.

PLANNED FEATURES
[x] Add make target "install"
[x] Add linewrapping
[x] Load file in 1d array instead of 2d screen-width-dependent one
[x] Display markups/text-associated highlights
[x] Add searching
[x] Extract control bindings into config.h
[x] Write man page
[x] Add a keybinding for "jump to the next(/prev) link at least a half-page away"
[x] Update '>' to be able to run lwl/bro
[x] Implement link-using commands
    [x] '>' to type arbitrary script with the link,
        in the system editor, and then run it on quit.
    [x] "enter" to follow a link
    [x] 'v' to preview Very Long Links

[ ] add "refresh page" control (5)
[ ] add "re-measure screen" control (%)

[x] make up-arrow during input set input to the most recently submitted input.
    (so that when you mistype a command, you can edit and re-run it quickly)

[x] Add input wrap / support for longer inputs (for '>', '!', '/', etc)

[ ] Make 'v' safe: make script-injecting impossible. (also for '>' if possible)
    [x] use printf instead of "echo $LINK"
    [x] ensure all weird chars (backspace, CU(URDL), etc) are apparent
[ ] Save URI to tmpfile for commands instead of shitting $LINK into a shell command
    (you can still do it like `echo "$(cat $LINKFILE)" >> bookmarks` but this
     would encourage much better security by default.)
    (possible solution to "Make 'v' safe")

[ ] Extract terminal control sequences into a single, obvious place in the code
