AERC updates
This commit is contained in:
parent
c7ff7731e5
commit
fea6955b8f
|
@ -1,6 +1,3 @@
|
|||
#
|
||||
# aerc main configuration
|
||||
|
||||
[general]
|
||||
#
|
||||
# Used as a default path for save operations if no other path is specified.
|
||||
|
@ -568,7 +565,7 @@ pager=nvim -u $XDG_CONFIG_HOME/nvim/aerc.lua
|
|||
# ignored.
|
||||
#
|
||||
# This parameter can also be set per account in accounts.conf.
|
||||
#address-book-cmd=
|
||||
address-book-cmd='notmuch address "%s"'
|
||||
|
||||
# Specifies the command to be used to select attachments. Any occurrence of
|
||||
# '%s' in the file-picker-cmd will be replaced with the argument <arg>
|
||||
|
@ -622,7 +619,9 @@ pager=nvim -u $XDG_CONFIG_HOME/nvim/aerc.lua
|
|||
#
|
||||
# Example (obviously, this requires that you write your main text/plain body
|
||||
# using the markdown syntax):
|
||||
text/html=pandoc -f markdown -t html --standalone
|
||||
# text/html=pandoc -f markdown -t html --standalone
|
||||
# text/html=lynx -dump -force_html -stdin
|
||||
text/html=w3m -dump -o display_link_number=1 -T text/html
|
||||
|
||||
[filters]
|
||||
#
|
||||
|
@ -662,7 +661,8 @@ text/plain=cat
|
|||
text/calendar=gnome-calendar
|
||||
message/delivery-status=cat
|
||||
message/rfc822=cat
|
||||
text/html=pandoc -f html -t plain
|
||||
# text/html=lynx -dump -force_html -stdin
|
||||
text/html=w3m -dump -o display_link_number=1 -T text/html
|
||||
#text/html=html | colorize
|
||||
text/*=bat -fP --file-name="$AERC_FILENAME"
|
||||
application/x-sh=bat -fP -l sh
|
||||
|
|
|
@ -35,8 +35,7 @@ K = :prev-folder<Enter>
|
|||
v = :mark -t<Enter>
|
||||
# <Space> = :mark -t<Enter>:next<Enter>
|
||||
V = :mark -v<Enter>
|
||||
<Space> = :read<Enter>
|
||||
<C-Space> = :unread<Enter>
|
||||
<Space> = :read -t<Enter>
|
||||
|
||||
T = :toggle-threads<Enter>
|
||||
# zc = :fold<Enter>
|
||||
|
@ -51,6 +50,7 @@ d = :prompt 'Really delete this message?' 'delete-message'<Enter>
|
|||
D = :delete<Enter>
|
||||
a = :archive flat<Enter>
|
||||
A = :unmark -a<Enter>:mark -T<Enter>:archive flat<Enter>
|
||||
f = :flag -t<Enter>
|
||||
|
||||
c = :compose<Enter>
|
||||
m = :compose<Enter>
|
||||
|
@ -65,8 +65,8 @@ $ = :term<space>
|
|||
! = :term<space>
|
||||
| = :pipe<space>
|
||||
|
||||
/ = :search<space>
|
||||
\ = :filter<space>
|
||||
/ = :search -a<space>
|
||||
\ = :filter -a <space>
|
||||
n = :next-result<Enter>
|
||||
N = :prev-result<Enter>
|
||||
<Esc> = :clear<Enter>
|
||||
|
@ -96,7 +96,7 @@ A = :archive flat<Enter>
|
|||
|
||||
<C-l> = :open-link <space>
|
||||
|
||||
f = :forward<Enter>
|
||||
f = :flag -t<Enter>
|
||||
rr = :reply -a<Enter>
|
||||
rq = :reply -aq<Enter>
|
||||
Rr = :reply<Enter>
|
||||
|
|
Loading…
Reference in New Issue