We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69d716 commit 292e7f3Copy full SHA for 292e7f3
src/platform/sdl/editor.cpp
@@ -113,6 +113,7 @@ void System::editSource(strlib::String &loadPath) {
113
break;
114
case SB_KEY_CTRL('c'):
115
case SB_KEY_CTRL('x'):
116
+ case SB_KEY_CTRL(SB_KEY_INSERT):
117
text = widget->copy(event.key == (int)SB_KEY_CTRL('x'));
118
if (text) {
119
setClipboardText(text);
@@ -177,6 +178,7 @@ void System::editSource(strlib::String &loadPath) {
177
178
helpWidget->show();
179
180
case SB_KEY_CTRL('v'):
181
+ case SB_KEY_SHIFT(SB_KEY_INSERT):
182
text = getClipboardText();
183
widget->paste(text);
184
free(text);
0 commit comments