From 8567113f0f4d1014098e7b16b9cd805944c67f56 Mon Sep 17 00:00:00 2001
From: Pierre Rudloff <contact@rudloff.pro>
Date: Thu, 13 Apr 2017 17:20:05 +0200
Subject: [PATCH] Doc about j/k keyboard shortcuts

---
 doc/KeyboardShortcuts.md | 10 ++++++++++
 js/main.js               |  1 +
 2 files changed, 11 insertions(+)
 create mode 100644 doc/KeyboardShortcuts.md

diff --git a/doc/KeyboardShortcuts.md b/doc/KeyboardShortcuts.md
new file mode 100644
index 0000000000..cf783b0da1
--- /dev/null
+++ b/doc/KeyboardShortcuts.md
@@ -0,0 +1,10 @@
+Keyboard shortcuts in Friendica
+=======================
+
+* [Home](help)
+
+General
+-------
+
+* j: Scroll to next thread
+* k: Scroll to previous thread
diff --git a/js/main.js b/js/main.js
index 98c219d78c..c85aab4a27 100644
--- a/js/main.js
+++ b/js/main.js
@@ -322,6 +322,7 @@
 			}
 		});
 
+		// Scroll to the next/previous thread when pressing J and K
 		$(document).keydown(function (event) {
 			var threads = $('.thread_level_1');
 			if ((event.keyCode === 74 || event.keyCode === 75) && !$(event.target).is('textarea, input')) {