From 571447298ae0b02527c94e7a26cd6451e520dd96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Fri, 30 Jun 2017 21:52:43 +0200 Subject: [PATCH] Switch output mode also on 't' --- sdn.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sdn.cpp b/sdn.cpp index b824440..937fb36 100644 --- a/sdn.cpp +++ b/sdn.cpp @@ -508,6 +508,7 @@ fun handle (wint_t c, bool is_char) -> bool { case CTRL L'e': g.offset++; break; case CTRL L'y': g.offset--; break; + case L't': case ALT | L't': g.full_view = !g.full_view; break;