Set up aerc to do url scans
- Add a 'u' bind in message view to fire urlscan - Set PAGER to "most -w" to auto-wrap lines
This commit is contained in:
parent
9ac6a6ad11
commit
697e54ea11
2 changed files with 3 additions and 1 deletions
|
@ -72,6 +72,8 @@ H = :toggle-headers<Enter>
|
||||||
J = :next<Enter>
|
J = :next<Enter>
|
||||||
K = :prev<Enter>
|
K = :prev<Enter>
|
||||||
|
|
||||||
|
u = |urlscan<Enter>
|
||||||
|
|
||||||
[compose]
|
[compose]
|
||||||
# Keybindings used when the embedded terminal is not selected in the compose
|
# Keybindings used when the embedded terminal is not selected in the compose
|
||||||
# view
|
# view
|
||||||
|
|
2
.zshrc
2
.zshrc
|
@ -30,7 +30,7 @@ export QT_QPA_PLATFORMTHEME=qt5ct
|
||||||
|
|
||||||
# most does not exist on every system I touch
|
# most does not exist on every system I touch
|
||||||
if [[ -a /usr/bin/most ]]; then
|
if [[ -a /usr/bin/most ]]; then
|
||||||
export PAGER=most
|
export PAGER="most -w"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Key binds
|
# Key binds
|
||||||
|
|
Loading…
Add table
Reference in a new issue