about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* Execute the editor with the shellDrew DeVault2019-06-071-1/+1
| | | | Fixes #164
* Add binding to toggle headersDrew DeVault2019-06-072-1/+2
|
* implements ability to view headers in message viewYash Srivastav2019-06-076-54/+146
|
* Skip rendering dirlist if sidebar width is 0Lucas F. Souza2019-06-071-1/+3
|
* Use SetAddressList for From headerDrew DeVault2019-06-051-2/+10
|
* config: sort account foldersChris Kinniburgh2019-06-051-1/+4
| | | | directory list depends on these being sorted
* Introduce :new-account -tJanUlrich2019-06-052-16/+32
| | | | | | | | Adding the [-t] temporary flag to the new-account command - when using -t a newly created account will not be stored into the accounts.conf Issue #134
* Mention aerc-tutorial(7) in aerc(1)ngenisis2019-06-051-2/+3
|
* Allow no arguments to :cdTadeo Kondrak2019-06-051-3/+5
| | | | I often use the bare `cd` command to get back to my home directory.
* Added config file to Make clean 0.1.1Jonas Kalderstam2019-06-041-1/+1
| | | | | Config file will be incorrect if make is run with different values for PREFIX otherwise.
* Update dependenciesSimon Ser2019-06-042-46/+30
| | | | | | This should get rid of this error message: tls: either ServerName or InsecureSkipVerify must be specified in the tls.Config
* Clarify socksify dependencyDrew DeVault2019-06-041-1/+1
|
* Update README.md with better dependency listDrew DeVault2019-06-041-1/+9
|
* add missing column in tableStephen Gregoratto2019-06-031-0/+1
|
* Update aerc-tutorial(7) to reflect changes to reply bindingsFrancis Dinh2019-06-031-4/+4
| | | | | As of commit 11a569f6, the functions of rr/Rr and rq/Rq are switched, but this wasn't reflected in the manpage until now.
* Fix Makefile for non-GNU findrage 3112019-06-031-1/+1
| | | | derp
* Fix #116 0.1.0Drew DeVault2019-06-031-1/+1
|
* Add delete to the default binds.confDrew DeVault2019-06-021-0/+1
|
* hldiff.py: don't highlight -/+ in filenamesDrew DeVault2019-06-021-2/+2
|
* Add Tabs historyReto Brunner2019-06-021-4/+34
| | | | Fixes #77: When closing a tab, bring you back to the one you last had focused
* Wait for listing to complete before sending DoneDrew DeVault2019-06-021-0/+3
|
* Don't send Done until finished fetching messagesDrew DeVault2019-06-021-0/+3
|
* Remove worker callbacks when Done is receivedDrew DeVault2019-06-022-5/+13
|
* Add date to message viewerDrew DeVault2019-06-022-5/+11
|
* widget: Add ProvidesMessage interfaceKevin Kuehler2019-06-0210-18/+93
| | | | | | | | | | | 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>
* Update tcell forkDrew DeVault2019-06-022-1/+3
|
* Only add message to store if store existsKevin Kuehler2019-06-021-8/+12
| | | | | | | Prevents the program from panicing when changing folders too quickly. onMessage can race store creation for an AccountView. Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu>
* Enumerate Cc and Bcc lists in composerDrew DeVault2019-06-021-1/+20
|
* Fix infinite recursion in reply.go:findPlaintextDrew DeVault2019-06-021-1/+1
|
* Simplify layout of message viewer gridDrew DeVault2019-06-021-17/+3
| | | | This sub-grid was an artifact of an older design
* Fetch plaintext part when replyingDrew DeVault2019-06-011-6/+34
|
* Use forked version of tcellDrew DeVault2019-06-013-4/+15
|
* widgets/terminal: Don't segfault on resizeKevin Kuehler2019-06-011-10/+15
| | | | | | | vterm.Write and vterm.SetSize race when the window resizes, which causing the underlying library to segfault. Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu>
* Remove more GNU-isms from MakefileSam Whited2019-06-011-11/+18
| | | | Signed-off-by: Sam Whited <sam@samwhited.com>
* Remove "wildcard" GNU-ism from MakefileSam Whited2019-05-301-15/+2
| | | | Signed-off-by: Sam Whited <sam@samwhited.com>
* Add :save and :pipe commands to viewerGalen Abell2019-05-278-37/+194
| | | | | | | | | * :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
* Update terminal color handling per vterm changesDrew DeVault2019-05-263-44/+25
|
* Update to the latest go-libvtermDrew DeVault2019-05-264-5/+15
|
* Update go-libvtermDrew DeVault2019-05-262-1/+3
|
* Skip non selectable mailboxes in directory listingReto Brunner2019-05-261-0/+13
| | | | | | | | | | | | | | | | If a MailboxInfo has the attribute \Noselect, it is not possible to use this name as a selectable mailbox. Therefore it should not be passed to the directory handlers. The issue pops up if one has a hierarchy like this: INBOX INBOX/lists/stuff INBOX/lists/otherStuff Even though lists is not a valid inbox (doesn't contain mail, only other maildirs) it will show up in the directory listing, when we iterate over the MailboxInfo. It does have the corresponding attribute set though and we can simply filter it out.
* Add aerc-announce to README.mdDrew DeVault2019-05-261-3/+6
|
* Implement :edit in compose screenDrew DeVault2019-05-264-28/+80
|
* msgviewer: copy stderr into pagerDrew DeVault2019-05-261-1/+17
| | | | This prevents a broken filter config from being a silent error
* Subsitute prefix in aerc.conf for installDrew DeVault2019-05-263-7/+21
|
* Document :forward in aerc(1)Drew DeVault2019-05-251-0/+3
|
* binds.conf: make reply -a easier to use than replyDrew DeVault2019-05-251-4/+4
|
* Update README.mdDrew DeVault2019-05-251-1/+1
|
* Update README.mdDrew DeVault2019-05-251-13/+4
|
* Update README.mdDrew DeVault2019-05-251-1/+3
|
* ensureScroll on text input framesDrew DeVault2019-05-251-0/+2
|