Fix typos
This commit is contained in:
parent
2e7f15b698
commit
a7986f5706
|
@ -77,7 +77,7 @@ func (Mark) Execute(aerc *widgets.Aerc, args []string) error {
|
|||
|
||||
case "unmark":
|
||||
if visual {
|
||||
return fmt.Errorf("visual mode not suported for this command")
|
||||
return fmt.Errorf("visual mode not supported for this command")
|
||||
}
|
||||
|
||||
if all && toggle {
|
||||
|
|
|
@ -51,7 +51,7 @@ func (Read) Execute(aerc *widgets.Aerc, args []string) error {
|
|||
}
|
||||
|
||||
if toggle {
|
||||
// ignore commmand given, simply toggle all the read states
|
||||
// ignore command given, simply toggle all the read states
|
||||
return submitToggle(aerc, store, h)
|
||||
}
|
||||
msgUids, err := h.markedOrSelectedUids()
|
||||
|
|
|
@ -17,7 +17,7 @@ import (
|
|||
"github.com/mitchellh/go-homedir"
|
||||
)
|
||||
|
||||
// QuickTerm is an ephemeral terminal for running a single command and quiting.
|
||||
// QuickTerm is an ephemeral terminal for running a single command and quitting.
|
||||
func QuickTerm(aerc *widgets.Aerc, args []string, stdin io.Reader) (*widgets.Terminal, error) {
|
||||
cmd := exec.Command(args[0], args[1:]...)
|
||||
pipe, err := cmd.StdinPipe()
|
||||
|
|
|
@ -58,7 +58,7 @@ These options are configured in the *[ui]* section of aerc.conf.
|
|||
: sender name and address
|
||||
| %F
|
||||
: author name, or recipient name if the message is from you.
|
||||
The adderss is shown if no name part.
|
||||
The address is shown if no name part.
|
||||
| %g
|
||||
: message labels (for example notmuch tags)
|
||||
| %i
|
||||
|
@ -129,7 +129,7 @@ These options are configured in the *[ui]* section of aerc.conf.
|
|||
Default: "[..] , [..] , [..] , [..] , [..], [..] , [..] , [..] "
|
||||
|
||||
*spinner-delimiter*
|
||||
Spinner delimiter to split string into a animation
|
||||
Spinner delimiter to split string into an animation
|
||||
|
||||
Default: ","
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ available:
|
|||
*oauth2_params:*
|
||||
|
||||
If specified, the configured password is used as an refresh token that
|
||||
is exhanged with an access token
|
||||
is exchanged with an access token
|
||||
|
||||
- token_endpoint (required)
|
||||
- client_id (optional)
|
||||
|
|
|
@ -29,7 +29,7 @@ available:
|
|||
*smtps://*:
|
||||
SMTP with TLS/SSL
|
||||
|
||||
Additionally, you can specify an authentication mechansim like so:
|
||||
Additionally, you can specify an authentication mechanism like so:
|
||||
|
||||
*+none*:
|
||||
No authentication is required to use this SMTP server. You may omit the
|
||||
|
|
|
@ -56,7 +56,7 @@ available always.
|
|||
|
||||
*Date and Time*
|
||||
The date and time information is always available and can be easily
|
||||
formated.
|
||||
formatted.
|
||||
|
||||
- Date: Date and Time information when the compose window is opened.
|
||||
- OriginalDate: Date and Time when the original message of received.
|
||||
|
|
|
@ -50,7 +50,7 @@ These commands work in any context.
|
|||
Displays aerc's current working directory in the status bar.
|
||||
|
||||
*set* <category>.<option> <value>
|
||||
Changes the value of a configuration paramter at runtime. The category is
|
||||
Changes the value of a configuration parameter at runtime. The category is
|
||||
the name of the [heading] for the config option you wish to change, and the
|
||||
option is the name of the config option. For example, to change this option:
|
||||
|
||||
|
@ -198,7 +198,7 @@ message list, the message in the message viewer, etc).
|
|||
|
||||
*search*
|
||||
Searches the current folder.
|
||||
The search syntax is dependant on the underlying backend.
|
||||
The search syntax is dependent on the underlying backend.
|
||||
Refer to *aerc-search*(1) for details
|
||||
|
||||
*select* <n>
|
||||
|
@ -284,7 +284,7 @@ message list, the message in the message viewer, etc).
|
|||
## MESSAGE COMPOSE COMMANDS
|
||||
|
||||
*abort*
|
||||
Close the composor without sending, discarding the message in progress.
|
||||
Close the composer without sending, discarding the message in progress.
|
||||
|
||||
*attach* <path>
|
||||
Attaches the file at the given path to the email.
|
||||
|
|
Loading…
Reference in New Issue