FiremacsWE icon indicating copy to clipboard operation
FiremacsWE copied to clipboard

Firemacs as a Web Extension

Results 87 FiremacsWE issues
Sort by recently updated
recently updated
newest added

name: DeleteCharBackward case: Edit keyx: C-h body: goDoCommand('cmd_deleteCharBackward'); this._sfun.resetMark(e); desc: deletes the previous char type:

name: DeleteCharForward case: Edit keyx: C-d body: goDoCommand('cmd_deleteCharForward'); desc: deletes the next char type:

name: Paste case: Edit keyx: C-y body: goDoCommand('cmd_paste'); desc: pastes the copy buf type:

name: KillLineBackward case: Edit keyx: C-u body: this._sfun.resetMark(e); goDoCommand('cmd_selectBeginLine'); goDoCommand('cmd_copy'); goDoCommand('cmd_deleteToBeginningOfLine'); this._sfun.resetMark(e); desc: kills the line backward type:

name: KillLineForward case: Edit keyx: C-k body: this._sfun.resetMark(e); goDoCommand('cmd_selectEndLine'); goDoCommand('cmd_copy'); goDoCommand('cmd_deleteToEndOfLine'); this._sfun.resetMark(e); desc: kills the line forward type:

name: KillRegion case: Edit keyx: C-w body: goDoCommand('cmd_cut'); this._sfun.resetMark(e); desc: kills the region type:

name: SetMarkAlias case: Edit keyx: C-i body: this._sfun.resetMark(e); this._sfun.setMark(e); desc: puts the mark type:

name: SetMark case: Edit keyx: C-SPC body: this._sfun.resetMark(e); this._sfun.setMark(e); desc: puts the mark type:

name: ArrowNextChar case: Edit keyx: right body: this._sfun.NextChar(e); desc: moves to the next char 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: