about summary refs log tree commit diff stats
path: root/res/config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'res/config.toml')
-rw-r--r--res/config.toml6
1 files changed, 4 insertions, 2 deletions
diff --git a/res/config.toml b/res/config.toml
index b96f05d8..14b746fd 100644
--- a/res/config.toml
+++ b/res/config.toml
@@ -38,6 +38,9 @@ default-headers = {
 	Cache-Control = "no-cache"
 }
 
+[input]
+vi-numeric-prefix = true
+
 [display]
 color-mode = "auto"
 format-mode = "auto"
@@ -104,9 +107,8 @@ U = 'pager.reload()'
 r = 'pager.redraw()'
 R = 'pager.reshape()'
 M-C-c = 'pager.cancel()'
-1G = 'pager.cursorFirstLine()'
 g = 'pager.cursorFirstLine()'
-G = 'pager.cursorLastLine()'
+G = 'n => n ? pager.gotoLine(n) : pager.cursorLastLine()'
 M-g = 'pager.gotoLine()'
 z = 'pager.centerLine()'
 C-g = 'pager.lineInfo()'