m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/blog/vim-keybindings-for-newsboat.html
blob: 00f96e16d7268de02c488d9f42edb3fb393d0c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
title: Vim Keybindings for Newsboat
date: November 21, 2019 21:36
---

<p>
Put in <code>~/.config/newsboat/config</code>.

<pre>
# jk - move up/down
unbind-key j
unbind-key k
bind-key j down
bind-key k up

# hl - move in/out of feeds/articles
bind-key h quit
bind-key l open

# q quits the program
unbind-key q
bind-key q hard-quit

# g/G to go to top/bottom
unbind-key g
unbind-key G
bind-key g home
bind-key G end

# f to follow links (like qutebrowser)
unbind-key f
bind-key f goto-url
</pre>
</p>