<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aerc/commands, branch 0.2.1</title>
<subtitle>Mirror of https://git.sr.ht/~sircmpwn/aerc
</subtitle>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/'/>
<entry>
<title>Sendmail: allow for arbitrary parameters</title>
<updated>2019-07-29T18:51:12+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2019-07-28T12:33:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=c81b3eb1cb8f25fb563b7d9ea99814e9ba21c737'/>
<id>c81b3eb1cb8f25fb563b7d9ea99814e9ba21c737</id>
<content type='text'>
Allows the outgoing command to contain arguments and flags
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows the outgoing command to contain arguments and flags
</pre>
</div>
</content>
</entry>
<entry>
<title>Add index option to change-tab</title>
<updated>2019-07-27T16:40:28+00:00</updated>
<author>
<name>Jeffas</name>
<email>dev@jeffas.io</email>
</author>
<published>2019-07-26T21:41:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=989730d47000feb297b5fab4e273a9d9b13c5741'/>
<id>989730d47000feb297b5fab4e273a9d9b13c5741</id>
<content type='text'>
This allows selection of a tab using its index. It attempts to parse the
given argument as a number, if it fails then it uses it as a name.

Also supports relative indexes using prefixed + or -.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows selection of a tab using its index. It attempts to parse the
given argument as a number, if it fails then it uses it as a name.

Also supports relative indexes using prefixed + or -.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add :detach command</title>
<updated>2019-07-27T16:37:55+00:00</updated>
<author>
<name>Galen Abell</name>
<email>galen@galenabell.com</email>
</author>
<published>2019-07-27T14:38:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=0ee7d30187920751c6e79facbd87ebce86d62ec9'/>
<id>0ee7d30187920751c6e79facbd87ebce86d62ec9</id>
<content type='text'>
Add a command for removing attachments from a composed message. Syntax
is :detach [path], with path being an optional argument specifying the
path of one existing attachment. If no path is specified, the first
attachment is removed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a command for removing attachments from a composed message. Syntax
is :detach [path], with path being an optional argument specifying the
path of one existing attachment. If no path is specified, the first
attachment is removed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing fallthrough</title>
<updated>2019-07-27T16:36:30+00:00</updated>
<author>
<name>Drew DeVault</name>
<email>sir@cmpwn.com</email>
</author>
<published>2019-07-27T16:36:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=d931bbeff149d603c3210db23aea50dbd3d88d57'/>
<id>d931bbeff149d603c3210db23aea50dbd3d88d57</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement sendmail support</title>
<updated>2019-07-27T15:19:49+00:00</updated>
<author>
<name>Drew DeVault</name>
<email>sir@cmpwn.com</email>
</author>
<published>2019-07-27T15:19:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=48758136c03b89757f7df1dd26331169c3d4ca02'/>
<id>48758136c03b89757f7df1dd26331169c3d4ca02</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tab completion to textinputs</title>
<updated>2019-07-26T18:39:42+00:00</updated>
<author>
<name>Jeffas</name>
<email>dev@jeffas.io</email>
</author>
<published>2019-07-26T13:29:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=cded067bc3919a77b17feedd877e4590e7c95f4a'/>
<id>cded067bc3919a77b17feedd877e4590e7c95f4a</id>
<content type='text'>
This adds tab completion to textinput components. They can be configured
with a completion function. This function is called when the user
presses &lt;tab&gt;. The first completion is initially shown to the user
inserted into the text. Repeated presses of &lt;tab&gt; or &lt;backtab&gt; cycle
through the completions list. The completions list is invalidated when
any other non-tab-like key is pressed.

Also changed is some logic for current completion generation so that
all available commands are returned when &lt;tab&gt; is pressed with no
current text and similarly for arguments of commands.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds tab completion to textinput components. They can be configured
with a completion function. This function is called when the user
presses &lt;tab&gt;. The first completion is initially shown to the user
inserted into the text. Repeated presses of &lt;tab&gt; or &lt;backtab&gt; cycle
through the completions list. The completions list is invalidated when
any other non-tab-like key is pressed.

Also changed is some logic for current completion generation so that
all available commands are returned when &lt;tab&gt; is pressed with no
current text and similarly for arguments of commands.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add command history and cycling</title>
<updated>2019-07-26T18:29:34+00:00</updated>
<author>
<name>Galen Abell</name>
<email>galen@galenabell.com</email>
</author>
<published>2019-07-23T16:52:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=8635c70fda20b91f97c42f4e23e97bc01a14a89d'/>
<id>8635c70fda20b91f97c42f4e23e97bc01a14a89d</id>
<content type='text'>
Aerc will keep track of the previous 1000 commands, which the user can
cycle through using the arrow keys while in the ex-line. Pressing up
will move backwards in history while pressing down will move forward.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Aerc will keep track of the previous 1000 commands, which the user can
cycle through using the arrow keys while in the ex-line. Pressing up
will move backwards in history while pressing down will move forward.
</pre>
</div>
</content>
</entry>
<entry>
<title>Support configurable header layout in compose widget</title>
<updated>2019-07-26T18:22:04+00:00</updated>
<author>
<name>Daniel Bridges</name>
<email>bridges2@gmail.com</email>
</author>
<published>2019-07-22T23:29:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=67fb0938a66605a0b6a837005804637b348b250d'/>
<id>67fb0938a66605a0b6a837005804637b348b250d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add new-email trigger</title>
<updated>2019-07-26T18:00:24+00:00</updated>
<author>
<name>Jeffas</name>
<email>dev@jeffas.io</email>
</author>
<published>2019-07-21T20:01:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=dc4c36adbfbffd34319ddc007bad437ef802ee72'/>
<id>dc4c36adbfbffd34319ddc007bad437ef802ee72</id>
<content type='text'>
This patch sets up the trigger config section of aerc.conf.

Each trigger has its own function which is called from the place where
it is triggered. Currently only the new-email trigger is implemented.

The triggers make use of format strings. For instance, in the new-email
trigger this allows the user to select the trigger command and also the
information extracted from the command and placed into their command.

To actually execute the trigger commands the keypresses are simulated.

Further triggers can be implemented in the future.

Formatting of the command is moved to a new package.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch sets up the trigger config section of aerc.conf.

Each trigger has its own function which is called from the place where
it is triggered. Currently only the new-email trigger is implemented.

The triggers make use of format strings. For instance, in the new-email
trigger this allows the user to select the trigger command and also the
information extracted from the command and placed into their command.

To actually execute the trigger commands the keypresses are simulated.

Further triggers can be implemented in the future.

Formatting of the command is moved to a new package.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix :close on terminal panic</title>
<updated>2019-07-25T22:12:08+00:00</updated>
<author>
<name>Jeffas</name>
<email>dev@jeffas.io</email>
</author>
<published>2019-07-23T18:41:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=ee5b537d538baf38450a2ae655dee53a49aa9824'/>
<id>ee5b537d538baf38450a2ae655dee53a49aa9824</id>
<content type='text'>
Executing :close on a terminal would panic due to it already having been
removed.

This is also related to the fact that removing a tab doesn't check for
whether it actually found a tab to remove or not.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Executing :close on a terminal would panic due to it already having been
removed.

This is also related to the fact that removing a tab doesn't check for
whether it actually found a tab to remove or not.
</pre>
</div>
</content>
</entry>
</feed>
