Ben Rudgers

Results 87 issues of Ben Rudgers

Kazu-yamamoto, thank you for making such a wonderful tool. I enjoy using Firemacs every day. I am posting this as an issue because I could not find another contact point....

I primarily use Firemacs for: + tab navigation + editing text.

name: CloseTab case: Common keyx: C-xk body: if (typeof(BrowserCloseTabOrWindow) == 'function') { BrowserCloseTabOrWindow(); } desc: closes the tab type:

- The listener observes keystrokes. It sends a message when the keystrokes match a pattern.

name: SelectAll case: Common keyx: C-xh body: goDoCommand('cmd_selectAll') desc: selects all type:

name: NextCompletion case: Menu keyx: C-n body: this._sfun.NextCompletion(e); desc: moves to the next line type:

name: PreviousCompletion case: Menu keyx: C-p body: this._sfun.PreviousCompletion(e); desc: moves to the previous line type:

name: SavePage case: Common keyx: C-xC-s body: this._sfun.pageSave(e); desc: save page type:

name: OpenFile case: Common keyx: C-xC-f body: if (typeof(BrowserOpenFileWindow) == 'function') { BrowserOpenFileWindow(); } desc: opens a file type:

OpenFile Requires file permissions SavePage Requires file permissions