about summary refs log tree commit diff stats
path: root/commands/msgview/pipe.go
Commit message (Collapse)AuthorAgeFilesLines
* Implement basic tab completion supportGregory Mullen2019-06-291-2/+12
| | | | | Tab completion currently only works on commands. Contextual completion will be added in the future.
* Make part encoding checks case insensitiveRéouven Assouly2019-06-161-3/+3
| | | | | | commands/msgview/save and commands/msgview/pipe now use case insensitive comparisons to determine if the part is encoded as base64 or quoted-printable.
* Add :save and :pipe commands to viewerGalen Abell2019-05-271-0/+45
* :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