jsketcher/web/app/sketcher/keymaps/default.js
NetzerRosenfeld a26240d632
Bug fix in keysmap and short keys. (#169)
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>
2022-08-19 18:56:41 -07:00

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
};