diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-06-13 20:17:39 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-06-13 20:17:39 -0400 |
commit | 61206c6ac6fdc3fc884626a5b1076354f8311c33 (patch) | |
tree | 73fafefde2d9e5a35cd5953aad31ea2ff2eee766 /config | |
parent | 408a9e7b103e427db673c531b2a6f92fe8a26964 (diff) | |
download | aerc-61206c6ac6fdc3fc884626a5b1076354f8311c33.tar.gz |
Make awk filters more portable
Diffstat (limited to 'config')
-rw-r--r-- | config/aerc.conf.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/aerc.conf.in b/config/aerc.conf.in index de1c3ec..b07317f 100644 --- a/config/aerc.conf.in +++ b/config/aerc.conf.in @@ -69,7 +69,7 @@ editor= # You can also match on non-mimetypes, by prefixing with the header to match # against (non-case-sensitive) and a comma, e.g. subject,text will match a # subject which contains "text". Use header,~regex to match against a regex. -subject,~^\[PATCH=@SHAREDIR@/filters/hldiff -text/*=@SHAREDIR@/filters/plaintext +subject,~^\[PATCH=awk -f @SHAREDIR@/filters/hldiff +text/*=awk -f @SHAREDIR@/filters/plaintext #text/html=@SHAREDIR@/filters/html #image/*=catimg -w $(tput cols) - |