Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-29 | Implement basic tab completion support | Gregory Mullen | |
Tab completion currently only works on commands. Contextual completion will be added in the future. | |||
2019-06-21 | Fix Cc & Bcc handling in replies | Drew DeVault | |
2019-06-11 | lib/ui/tab: Add Replace method | Kevin Kuehler | |
Also expose a light wrapper method in aerc.go for tab replacement Signed-off-by: Kevin Kuehler <kkuehler@brave.com> | |||
2019-05-27 | Add :save and :pipe commands to viewer | Galen Abell | |
* :save takes a path and saves the current message part to that location * :pipe is the same as pipe on the account page, but uses the current message part rather than the whole email (ie :pipe gzip -d) * Refactored account:pipe and extracted common pipe code to commands.util.QuickTerm * Added helper command aerc.PushError | |||
2019-05-22 | Show account wizard if no accounts configured | Drew DeVault | |
2019-05-22 | Fix always showing last account tab | Drew DeVault | |
2019-05-21 | New account wizard, part one | Drew DeVault | |
2019-05-19 | Update internal state and draw from the same goroutine | Simon Ser | |
This commit introduces a new Aerc.Tick function that should be called to refresh the internal state. This in turn makes each AccountView process worker events. The UI goroutine repeatedly refreshes the internal state before drawing a new frame. The reason for this is that many worker messages may need to be processed for a single frame, and drawing the UI is far slower than refreshing the internal state. This has been confirmed in my testing (calling Aerc.Tick only once per frame results in a slower display). Many synchronization code has been removed. We can now write widgets without having to care so much about races. The remaining sync users are: - widgets/spinner: the spinner value is updated from inside an internal goroutine - lib/ui/invalidatable: Invalidate may be called from any goroutine - lib/ui/grid: same - lib/ui/ui: an internal goroutine needs read access to UI.exit - worker/types/worker: Worker.callbacks is used for both worker and UI callbacks The exact goroutine requirements for Drawable have been documented. | |||
2019-05-17 | s/aerc2/aerc/g | Drew DeVault | |
2019-05-14 | Add distinct keybindings for each compose view | Drew DeVault | |
2019-05-12 | Add initial compose widget | Drew DeVault | |
2019-03-31 | Make the message viewer real, part one | Drew DeVault | |
2019-03-30 | Add message view commands, :close | Drew DeVault | |
2019-03-30 | Add basic message viewer mockup | Drew DeVault | |
2019-03-30 | Correct color of error messages | Drew DeVault | |
2019-03-30 | Use tcell.Style.Reverse instead of black on white | Drew DeVault | |
2019-03-21 | Expire status errors on input | Drew DeVault | |
2019-03-21 | Use : for keybindings even when ex is overridden | Drew DeVault | |
2019-03-21 | Rig up terminal keybinding group | Drew DeVault | |
2019-03-21 | Use user's configured ex key | Drew DeVault | |
2019-03-21 | Add context-specific keybindings | Drew DeVault | |
2019-03-17 | Wrap Terminal in TermHost | Drew DeVault | |
2019-03-17 | Add :term-close | Drew DeVault | |
2019-03-17 | Handle terminal title, login shell | Drew DeVault | |
2019-03-17 | Implement :next-tab, :prev-tab | Drew DeVault | |
2019-03-17 | Move exline handling up to aerc, add :term | Drew DeVault | |
2019-03-17 | commands: handle case where no account selected | Drew DeVault | |
2019-03-17 | Add basic terminal widget | Drew DeVault | |
2019-03-15 | Implement sidebar-width config option | Drew DeVault | |
2019-03-15 | Rig up key bindings | Drew DeVault | |
2019-03-10 | Start building out command subsystem | Drew DeVault | |
2019-02-10 | Fix build | Elias Naur | |
2019-01-20 | Implement Container interface in widgets/ | Drew DeVault | |
2019-01-14 | Send commands up to the top-level aerc widget | Drew DeVault | |
2019-01-13 | Move ex line into account | Drew DeVault | |
2019-01-13 | Move status line into account, update behavior | Drew DeVault | |
2019-01-13 | Initialize worker in account widget | Drew DeVault | |
2019-01-13 | Add basic account widget, populate real acct views | Drew DeVault | |
2018-06-12 | Apply gofmt | Drew DeVault | |
2018-06-11 | Apply gofmt | Drew DeVault | |
2018-06-11 | Move sidebar into account tabs | Drew DeVault | |
This is accomplished through a bit of a hack, the statusbar is able to be a child of multiple dudes | |||
2018-06-01 | switch to tcell from termbox | Markus Ongyerth | |
This is a simple mostly straight forward switch to tcell in favor of termbox. It uses the tcell native api (not the compat layer) but does not make use of most features. Further changes should include moving to tcell's views.TextArea and the general built in widget behaviour instead of the current ad hoc implementation. Regression: Cursor isn't shown in ex-line | |||
2018-02-27 | Summon exline on demand | Drew DeVault | |
2018-02-27 | Push commands to the status stack | Drew DeVault | |
2018-02-27 | Pull main aerc UI into widget | Drew DeVault | |