{{ $t('editor.hashtag.addHashtag') }}
@@ -44,16 +46,24 @@
diff --git a/webapp/constants/editor.js b/webapp/constants/editor.js
new file mode 100644
index 000000000..ac4e53641
--- /dev/null
+++ b/webapp/constants/editor.js
@@ -0,0 +1,2 @@
+export const HASHTAG = 'hashtag'
+export const MENTION = 'mention'
diff --git a/webapp/constants/keycodes.js b/webapp/constants/keycodes.js
new file mode 100644
index 000000000..b34eb8dbe
--- /dev/null
+++ b/webapp/constants/keycodes.js
@@ -0,0 +1,4 @@
+export const ARROW_UP = 38
+export const ARROW_DOWN = 40
+export const RETURN = 13
+export const SPACE = 32