Ben Rudgers
Ben Rudgers
name: SearchBackword case: Common keyx: C-r body: this._sfun.SearchOpen(); var findField = this._sfun.SearchField(); if (findField && findField.value && findField.value !== '') { this._sfun.SearchBackward(); } desc: searches backward type:
name: SearchForward case: Common keyx: C-s body: this._sfun.SearchOpen(); var findField = this._sfun.SearchField(); if (findField && findField.value && findField.value !== '') { this._sfun.SearchForward(); } desc: searches forward type:
name: MoveBottom case: Edit keyx: M-> body: if (this._sfun.marked(e)) { goDoCommand('cmd_selectBottom'); } else { goDoCommand('cmd_moveBottom'); } desc: moves to the bottom type:
name: MoveTop case: Edit keyx: M-< body: if (this._sfun.marked(e)) { goDoCommand('cmd_selectTop'); } else { goDoCommand('cmd_moveTop'); } desc: moves to the top type:
name: DeleteWordBackward case: Edit keyx: M-DEL body: goDoCommand('cmd_deleteWordBackward'); desc: deletes a word backward type:
name: DeleteWordForward case: Edit keyx: M-d body: goDoCommand('cmd_deleteWordForward'); desc: deletes a word forward type:
name: PreviousWord case: Edit keyx: M-b body: if (this._sfun.marked(e)) { goDoCommand('cmd_selectWordPrevious'); } else { goDoCommand('cmd_wordPrevious'); } desc: moves to the previous word type:
name: NextWord case: Edit keyx: M-f body: if (this._sfun.marked(e)) { goDoCommand('cmd_selectWordNext'); } else { goDoCommand('cmd_wordNext'); } desc: moves to the next word type:
name: OpenLine case: Edit keyx: C-o body: this._sfun.insertText('\n'); this._sfun.PreviousChar(e); desc: open one line type: