Ben Rudgers
Ben Rudgers
name: ArrowNextLine case: Edit keyx: down body: if (this._sfun.eob(e) && this._preference.getWalkForm()) { this._sfun.moveFocus(e, 1); } else { this._sfun.NextLine(e); } desc: moves to the next line/input type:
Let's refactor this AFTER more important things are working!
name: BeggingOfLine case: Edit keyx: C-a body: if (this._sfun.marked(e)) { goDoCommand('cmd_selectBeginLine'); } else { goDoCommand('cmd_beginLine'); } desc: moves to the beg of the line type:
name: ArrowNextLine case: Edit keyx: down body: if (this._sfun.eob(e) && this._preference.getWalkForm()) { this._sfun.moveFocus(e, 1); } else { this._sfun.NextLine(e); } desc: moves to the next line/input type:
name: ArrowPreviousLine case: Edit keyx: up body: if (this._sfun.bob(e) && this._preference.getWalkForm()) { this._sfun.moveFocus(e, -1); } else { this._sfun.PreviousLine(e); } desc: moves to the previous line/input type:
name: NextChar case: Edit keyx: C-f body: this._sfun.NextChar(e); desc: moves to the next char type:
name: PreviousChar case: Edit keyx: C-b body: this._sfun.PreviousChar(e); desc: moves to the previous char type:
name: NextLine case: Edit keyx: C-n body: if (this._sfun.eob(e) && this._preference.getWalkForm()) { this._sfun.moveFocus(e, 1); } else { this._sfun.NextLine(e); } desc: moves to the next line/input type:
name: PreviousLine case: Edit keyx: C-p body: if (this._sfun.bob(e) && this._preference.getWalkForm()) { this._sfun.moveFocus(e, -1); } else { this._sfun.PreviousLine(e); } desc: moves to the previous line/input type:
name: ScrollBottom case: View keyx: M-> body: goDoCommand('cmd_scrollBottom'); desc: scrolls to the bottom type: