summaryrefslogtreecommitdiff
path: root/commands/util.go
AgeCommit message (Collapse)Author
2020-05-21Fix typosMartin Michlmayr
2020-05-11Change MarkedMessages to return uidsReto Brunner
Especially if one tries to interact with all marked messages there could be the case that not all headers are fetched yet, hence the messageInfo is still nil. This segfaults a lot of commands which in principle only need the uid to complete. If we switch to uids, this issue can be alleviated for those commands.
2019-12-21add command helpersReto Brunner
2019-09-20Sort path completionsJeffas
2019-08-02Add CompletePath methodGalen Abell
CompletePath takes an existing path and returns possible filesystem completions based on that path.
2019-05-27Add :save and :pipe commands to viewerGalen 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