Sorry for these very basic question, but after reading all the manual I
don't find how add an address on CC, or modify contacts already
filled in To.
Thanks,
--
Antoine — antoine@quaternum.net
Hi,
On Mon May 9, 2022 at 12:36 PM CEST, Antoine Fauchié wrote:
> Sorry for these very basic question, but after reading all the manual I> don't find how add an address on CC, or modify contacts already> filled in To.
do you mean in the "compose message" view?
There are key bindings defined in `binds.conf` which should look
something like this:
```
[compose]
$ex = <C-x>
<C-k> = :prev-field<Enter>
<C-j> = :next-field<Enter>
[compose::editor]
$noinherit = true
$ex = <C-x>
<C-k> = :prev-field<Enter>
<C-j> = :next-field<Enter>
```
So you should be able to use ctrl+j and crtl+k to cycle through the
fields and edit them directly.
Kind regards,
Jens
--
Wegtam GmbH, CTO 2022-05-09 12:57
Homepage : https://www.wegtam.com
Early (drifting): "Well... here I am..."
--Episode #14, "Objects in Space"
On Mon May 9, 2022 at 1:00 PM CEST, Jens Grassel wrote:
> There are key bindings defined in `binds.conf` which should look> something like this:>> ```> [compose]> $ex = <C-x>> <C-k> = :prev-field<Enter>> <C-j> = :next-field<Enter>>> [compose::editor]> $noinherit = true> $ex = <C-x>> <C-k> = :prev-field<Enter>> <C-j> = :next-field<Enter>> ```>> So you should be able to use ctrl+j and crtl+k to cycle through the> fields and edit them directly.
Thanks for pointing out these key bindings, I missed them...
Now I'm looking to compose a message with a CC contact, or add a CC
after starting to edit a message, any ideas?
Hi,
On Mon May 9, 2022 at 2:52 PM CEST, Antoine Fauchié wrote:
> Thanks for pointing out these key bindings, I missed them...> Now I'm looking to compose a message with a CC contact, or add a CC> after starting to edit a message, any ideas?
depends on which editor is started. The default is vi(m) I think and you
should be able to jump out of the editor window by using ctrl+j / crtl+k
if not in insert mode.
There is also a configuration directive for which headers to show in the
`[compose]` section in the config:
```
header-layout=To|From,Cc|Bcc,Subject
```
Hope this helps.
Kind regards,
Jens
--
Wegtam GmbH, CTO 2022-05-09 14:53
Homepage : https://www.wegtam.com
Harrow: "You didn't have to wound the man."
Mal: "Yeah, I know, it was just funny."
--Episode #4, "Shindig"
On Mon May 9, 2022 at 7:52 AM CDT, Antoine Fauchié wrote:
> Thanks for pointing out these key bindings, I missed them...> Now I'm looking to compose a message with a CC contact, or add a CC> after starting to edit a message, any ideas?
If the Cc header isn't showing up by default, you can enter command mode
<C-x>, and then type:
header Cc
This will add a Cc editor.
On Mon May 9, 2022 at 3:53 PM CEST, Tim Culverhouse wrote:
> If the Cc header isn't showing up by default, you can enter command mode> <C-x>, and then type:>> header Cc>> This will add a Cc editor.
This is exactly what I was looking for.
Thanks a lot!