about summary refs log tree commit diff stats
path: root/commands/msg/delete.go
Commit message (Collapse)AuthorAgeFilesLines
* msg/delete: remove redundant err checkReto Brunner2020-02-291-3/+0
|
* delete: adapt to ProvidesMessagesReto Brunner2019-12-211-21/+59
|
* Config for deleting message from message viewerSrivathsan Murali2019-09-201-1/+1
| | | | | As suggested in #268, this adds a behaviour setting for deleting message from message viewer.
* all: purge redundant underscoresWagner Riffel2019-09-041-3/+3
| | | | Signed-off-by: Wagner Riffel <wgrriffel@gmail.com>
* select next message when deleting from message viewerAditya Srivastava2019-08-021-3/+10
|
* commands: Don't crash when store is nilKevin Kuehler2019-07-151-0/+3
| | | | | | | On a slow network connection, running these commands without this guard will cause aerc to panic. Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu>
* Fix crashes when operating on empty folder (#216)Daniel Bridges2019-07-101-3/+3
|
* Crash on delete in empty folder (#213)Zach Sisco2019-07-041-0/+3
|
* Implement basic tab completion supportGregory Mullen2019-06-291-3/+12
| | | | | Tab completion currently only works on commands. Contextual completion will be added in the future.
* Move select functionality from msglist to msgstoreKevin Kuehler2019-06-111-1/+2
| | | | | | Remove msglist Next and Prev commands Signed-off-by: Kevin Kuehler <kkuehler@brave.com>
* widget: Add ProvidesMessage interfaceKevin Kuehler2019-06-021-0/+45
Consists of 3 functions * Store: Access to MessageStore type * SelectedAccount: Access to Account widget that the target widget belongs to * SelectedMessage: Current message (selected in msglist or the one we are viewing) Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu>