summaryrefslogtreecommitdiff
path: root/src/console_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/console_gui.cpp')
-rw-r--r--src/console_gui.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/console_gui.cpp b/src/console_gui.cpp
index 9fbc015f5..2486f7588 100644
--- a/src/console_gui.cpp
+++ b/src/console_gui.cpp
@@ -293,6 +293,9 @@ struct IConsoleWindow : Window
MarkWholeScreenDirty();
break;
+#ifdef WITH_COCOA
+ case (WKC_META | 'V'):
+#endif
case (WKC_CTRL | 'V'):
if (InsertTextBufferClipboard(&_iconsole_cmdline)) {
IConsoleResetHistoryPos();
@@ -304,6 +307,9 @@ struct IConsoleWindow : Window
IConsoleCmdExec("clear");
break;
+#ifdef WITH_COCOA
+ case (WKC_META | 'U'):
+#endif
case (WKC_CTRL | 'U'):
DeleteTextBufferAll(&_iconsole_cmdline);
this->SetDirty();