This commit is contained in:
neauoire 2020-03-24 16:46:26 +09:00
parent 8742548eaa
commit b4d07cbd8b
3 changed files with 17 additions and 3 deletions

View File

@ -11,6 +11,22 @@ The library updates is constantly revealing new applications to Ronin, you can s
- Demos: https://twitter.com/neauoire/status/1152481692193419267
- Community: https://hundredrabbits.itch.io/ronin/community
Controls
∷ Toggle Menubar Tab
∷ Open Theme ^Shift+O
∷ Reset Theme ^Backspace
File New ^N
File Save ^S
File Export Image ^E
File Open ^O
View Toggle Guides ^Shift+H
View Toggle Commander ^K
View Expand Commander ^Shift+K
Project Run ^R
Project Re-Indent ^Shift+I
Project Clean Escape
Example
; clear screen

View File

@ -549,7 +549,6 @@ function Client () {
this.acels.set('View', 'Toggle Commander', 'CmdOrCtrl+K', () => { this.commander.toggle() })
this.acels.set('View', 'Expand Commander', 'CmdOrCtrl+Shift+K', () => { this.commander.toggle(true) })
this.acels.set('Project', 'Run', 'CmdOrCtrl+R', () => { this.commander.run() })
this.acels.set('Project', 'Reload Run', 'CmdOrCtrl+Shift+R', () => { this.source.revert(); this.commander.run() })
this.acels.set('Project', 'Re-Indent', 'CmdOrCtrl+Shift+I', () => { this.commander.reindent() })
this.acels.set('Project', 'Clean', 'Escape', () => { this.commander.cleanup() })
this.acels.route(this)

View File

@ -61,7 +61,6 @@ function Client () {
this.acels.set('View', 'Expand Commander', 'CmdOrCtrl+Shift+K', () => { this.commander.toggle(true) })
this.acels.set('Project', 'Run', 'CmdOrCtrl+R', () => { this.commander.run() })
this.acels.set('Project', 'Reload Run', 'CmdOrCtrl+Shift+R', () => { this.source.revert(); this.commander.run() })
this.acels.set('Project', 'Re-Indent', 'CmdOrCtrl+Shift+I', () => { this.commander.reindent() })
this.acels.set('Project', 'Clean', 'Escape', () => { this.commander.cleanup() })