mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 09:24:18 +01:00
ctrl +s , ctrl+o and open terminal command now working, F1 and ctrl + n are not working. There was problem of case sensitive. Co-authored-by: Val Erastov <xibyte@gmail.com>
7 lines
No EOL
214 B
JavaScript
7 lines
No EOL
214 B
JavaScript
export const keymap = {
|
|
'Save': 'ctrl+s',
|
|
'Open': 'ctrl+o',
|
|
'New' : 'ctrl+n',//not working- open new tab in the browser
|
|
'ToggleTerminal': '`',
|
|
'Info': 'F1' //not working- open the help in the browser
|
|
};
|