summaryrefslogtreecommitdiff
path: root/src/ui_elements/TextEditor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui_elements/TextEditor.c')
-rw-r--r--src/ui_elements/TextEditor.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ui_elements/TextEditor.c b/src/ui_elements/TextEditor.c
index 3cf34ff..1d35612 100644
--- a/src/ui_elements/TextEditor.c
+++ b/src/ui_elements/TextEditor.c
@@ -500,13 +500,11 @@ void HandleControlComands(TextArea *ta) {
}
/// Assumes that control is pressed
void HandleAltComands(TextArea *ta) {
-
// emacs-like stuff
if (IsKeyPressedFix(KEY_F)) MoveCursorRightWord(ta);
if (IsKeyPressedFix(KEY_B)) MoveCursorLeftWord(ta);
}
-
void HandleKeyboard(TextArea *ta) {
if (IsKeyDown(KEY_LEFT_CONTROL) || IsKeyDown(KEY_RIGHT_CONTROL)) {
HandleControlComands(ta);