FiremacsWE
FiremacsWE copied to clipboard
Firemacs as a Web Extension
name: CmPreviousTab case: Common keyx: C-M-b body: this._sfun.moveTab(-1); desc: moves to the previous tab type:
name: JumpSubmit case: Common keyx: C-xs body: this._sfun.moveButton(e, 0); desc: moves to the first button type:
name: JumpInput case: Common keyx: C-xt body: this._sfun.moveFocus(e, 0); desc: moves to the first input type:
name: FocusBody case: Common keyx: C-x. body: this._sfun.focusBody(); desc: moves to the body type:
name: JumpSearchBar case: Common keyx: C-xg body: var searchbar = document.getElementById('searchbar'); if (searchbar) { searchbar.select(); searchbar.focus(); } desc: moves to the search bar type:
name: JumpURLBar case: Common keyx: C-xl body: var urlbar = document.getElementById('urlbar'); if (urlbar) { urlbar.select(); urlbar.focus(); } desc: moves to the URL bar type:
name: ResetMark case: Common keyx: C-g body: this._sfun.SearchUnhilite(); this._sfun.SearchClose(); this._sfun.resetMark(e); desc: resets the mark type:
name: ScrollPageDown case: Common keyx: C-v body: goDoCommand('cmd_scrollPageDown'); desc: scrolls a page down type:
name: ScrollPageUp case: Common keyx: M-v body: goDoCommand('cmd_scrollPageUp'); desc: scrolls a page up type: