aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMinusGix <MinusGix@gmail.com>2019-04-11 00:30:32 +0200
committerGitHub <noreply@github.com>2019-04-11 00:30:32 +0200
commit41b55de9646b995710b3c13f400ce60898a30b4e (patch)
tree9182e9bbf06a8981d5c35df228eb968834e0b0f0 /client
parentrefactoring 2 of 2 (diff)
downloadhackchat-41b55de9646b995710b3c13f400ce60898a30b4e.tar.gz
hackchat-41b55de9646b995710b3c13f400ce60898a30b4e.zip
Pressing Tab inserts a Tab Character
This would make so when you press tab and it does not find any autocomplete it will insert a tab character. This is useful behavior for writing code quickly in chat.
Diffstat (limited to 'client')
-rw-r--r--client/client.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/client/client.js b/client/client.js
index 380318e..4f77450 100644
--- a/client/client.js
+++ b/client/client.js
@@ -401,6 +401,8 @@ $('#chatinput').onkeydown = function (e) {
var pos = e.target.selectionStart || 0;
var text = e.target.value;
var index = text.lastIndexOf('@', pos);
+
+ var autocompletedNick = false;
if (index >= 0) {
var stub = text.substring(index + 1, pos).toLowerCase();
@@ -411,8 +413,14 @@ $('#chatinput').onkeydown = function (e) {
if (nicks.length == 1) {
insertAtCursor(nicks[0].substr(stub.length) + " ");
+ autocompletedNick = true;
}
}
+
+ // Since we did not insert a nick, we insert a tab character
+ if (!autocompletedNick) {
+ insertAtCursor('\t');
+ }
}
}