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 31759e9 commit db8bd03Copy full SHA for db8bd03
1 file changed
src-mdviewer/src/components/editor.js
@@ -1294,7 +1294,11 @@ function enterEditMode(content) {
1294
const mod = isModKey(e);
1295
1296
if (isSlashMenuVisible() || isLangPickerDropdownOpen()) {
1297
- e.preventDefault();
+ // Let regular character input through for slash menu filtering
1298
+ // Only block modifier shortcuts that could interfere
1299
+ if (isModKey(e)) {
1300
+ e.preventDefault();
1301
+ }
1302
return;
1303
}
1304
0 commit comments