## STAGING
+* Font tag should only change font in edit region
+* centering logic in view.c seems broken
* implement new version of tfetch (plumb)
* implement tide registrar
* implement tctl command
* mouse selection handling when mouse moves outside region
* Line - Get the current line number(s) containing the selection
* refactor selection handling to avoid swapping manually (use buf_selbeg and buf_selend)
+* encode EOL setting in log entries?
## BACKLOG
* B2+B1 click executes command with selection as argument
* implement term program
* implement pick command
+* implement script for toggling between header and source file
Tags:
if (view->index > 0)
view->index--;
else if (view->rows[0]->off > 0)
- resize(view, view->width, view->nvisible, (view->rows[0]->off - 1));
+ resize(view, view->width, view->nvisible, buf_byrune(BUF, view->rows[0]->off, LEFT));
}
static void scroll_dn(View* view) {