From 417bca03dfa9a15a37d64678b5a4a175db6eb0a1 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 15 Feb 2018 19:56:11 +0900 Subject: Add shift-up and shift-down For now, they are respectively bound to preview-up and preview-down by default (TBD). Not available on tcell build. Close #1201 --- src/options.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/options.go') diff --git a/src/options.go b/src/options.go index 160fdd01..bec4d32e 100644 --- a/src/options.go +++ b/src/options.go @@ -426,6 +426,10 @@ func parseKeyChords(str string, message string) map[int]string { chord = tui.PgUp case "pgdn", "page-down": chord = tui.PgDn + case "shift-up": + chord = tui.SUp + case "shift-down": + chord = tui.SDown case "shift-left": chord = tui.SLeft case "shift-right": -- cgit v1.2.3