diff options
author | MinusGix <MinusGix@gmail.com> | 2019-04-11 00:30:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-11 00:30:32 +0200 |
commit | 41b55de9646b995710b3c13f400ce60898a30b4e (patch) | |
tree | 9182e9bbf06a8981d5c35df228eb968834e0b0f0 | |
parent | refactoring 2 of 2 (diff) | |
download | hackchat-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.
-rw-r--r-- | client/client.js | 8 |
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'); + } } } |