Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-13 | Add optional body argument to compose command | Daniel Bridges | |
2019-08-12 | Joining the args in cf for folders with spaces | Ben Cohen | |
2019-08-12 | Ignore scroll command when msgstore is nil | Jelle Besseling | |
Fixes ~sircmpwn/aerc2#205. Many functions do a nil check on the store, so this changes Store() so it returns nil when msglist is nil. It also places the Scroll() behind the nil check in the next-message command. https://todo.sr.ht/~sircmpwn/aerc2/205 | |||
2019-08-12 | Let user edit arbitrary headers in composer | Daniel Bridges | |
2019-08-07 | Implement next-message in msgview using account | Jelle Besseling | |
This makes sure that the next-message command accepts the same arguments in the account view and the msgview | |||
2019-08-07 | Implement next-folder using NextPrev with amount | Jelle Besseling | |
This fixes ~sircmpwn/aerc2#182 https://todo.sr.ht/~sircmpwn/aerc2/182 | |||
2019-08-02 | ChangeFolder: do not depend on the msgstore | Reto Brunner | |
We need to clear the filtering etc upon folder switch. Not having a valid msgstore is however no reason not to switch directories. | |||
2019-07-26 | Support configurable header layout in compose widget | Daniel Bridges | |
2019-07-19 | Implement :filter, :clear | Kevin Kuehler | |
Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu> | |||
2019-07-15 | commands: Don't crash when store is nil | Kevin Kuehler | |
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> | |||
2019-07-05 | Make :pipe command more generic | Drew DeVault | |
2019-07-04 | Add IMAP folder tab completion | Gregory Mullen | |
Credit for this fix goes to Reto; I guess if we're not gonna be mutt we should probabaly do things correctly. | |||
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-26 | Implement :search, :next-result, :prev-result | Drew DeVault | |
2019-06-18 | Insert nil check before handling prev/next message | Martin Hafskjold Thoresen | |
If these are called before the store is setup, `acct.Store()` returns `nil`, and we SEGFAULT in `MessageStore.nextPrev`. | |||
2019-06-11 | commands/msgview: Add next/prev commands | Kevin Kuehler | |
Signed-off-by: Kevin Kuehler <kkuehler@brave.com> | |||
2019-06-09 | Implement :mkdir command | Drew DeVault | |
2019-06-02 | widget: Add ProvidesMessage interface | Kevin Kuehler | |
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> | |||
2019-06-02 | Fix infinite recursion in reply.go:findPlaintext | Drew DeVault | |
2019-06-01 | Fetch plaintext part when replying | Drew DeVault | |
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-25 | Implement :forward | Drew DeVault | |
2019-05-25 | Fix special characters in address.PersonalName | Drew DeVault | |
2019-05-20 | Flesh out multipart switcher | Drew DeVault | |
2019-05-20 | pipe.go: let tab widget handle ellipsis | Drew DeVault | |
2019-05-19 | Missed a spot | Drew DeVault | |
2019-05-19 | Rename :delete-message et al to :delete et al | Drew DeVault | |
2019-05-19 | Advance cursor after :delete and :move | Drew DeVault | |
So that you can repeat the action on the next message if appropriate | |||
2019-05-18 | Fix scdoc & gofmt issues | Drew DeVault | |
2019-05-17 | s/aerc2/aerc/g | Drew DeVault | |
2019-05-16 | Improve reply-all recipient enumeration strategy | Drew DeVault | |
2019-05-16 | Decode email when reading it for quoting | Drew DeVault | |
2019-05-16 | Don't prefix Re: if prefix already present | Drew DeVault | |
2019-05-16 | Implement :reply -q and :reply -a | Drew DeVault | |
2019-05-16 | Implement (basic form) of :reply | Drew DeVault | |
2019-05-15 | Copy sent emails to the Sent folder | Drew DeVault | |
Or rather, to a user-specified folder | |||
2019-05-14 | Implement move, mv commands | Drew DeVault | |
2019-05-14 | Implement :copy (aka :cp) | Drew DeVault | |
2019-05-14 | Update tab name as subject changes | Drew DeVault | |
Also moves truncation to the tab widget | |||
2019-05-14 | Add $EDITOR, internal config for compose | Drew DeVault | |
2019-05-13 | Populate "From" header from config for new emails | Drew DeVault | |
2019-05-12 | Add initial compose widget | Drew DeVault | |
2019-05-11 | "Press any key to close" for completed processes | Drew DeVault | |
2019-04-17 | Fix segfault on :select-message for unloaded messages | Tom Lebreux | |
Signed-off-by: Tom Lebreux <tomlebreux@cock.li> | |||
2019-04-10 | Fix segfault on :view-message for unloaded message | Tom Lebreux | |
This also fixes segfault on :view-message on empty directory Signed-off-by: Tom Lebreux <tomlebreux@cock.li> | |||
2019-03-31 | Make tab width of :pipe consistent | Drew DeVault | |
2019-03-31 | Add basic filter implementation | Drew DeVault | |
2019-03-31 | Rename FetchMessageBodies to FetchFullMessages | Drew DeVault | |
2019-03-31 | Make the message viewer real, part one | Drew DeVault | |
2019-03-31 | Don't parse mail in worker; send a reader instead | Drew DeVault | |