Ben Rudgers

Results 87 issues of Ben Rudgers

name: MapSearch case: Common keyx: C-xC-a body: this._sfun.mapSearch(e); desc: map search type:

name: CopyTitleAndUrl case: Common keyx: C-M-b body: this._sfun.copyText(getBrowser().contentDocument.title+'\n'+getBrowser().contentDocument.URL); this._sfun._displayMessage('Title and URL copied', 2000); desc: copy title and url type:

name: WebSearch case: Common keyx: C-xC-e body: this._sfun.webSearch(e); desc: web search type:

name: CopyTitle case: Common keyx: C-M-t body: this._sfun.copyText(getBrowser().contentDocument.title); this._sfun._displayMessage('Title copied', 2000); desc: copy title type:

name: CopyUrl case: Common keyx: C-M-u body: this._sfun.copyText(getBrowser().contentDocument.location.href); this._sfun._displayMessage('URL copied', 2000); desc: copy url type:

name: NewLine case: Common keyx: C-m body: if (e.originalTarget.parentNode.parentNode == this._sfun.SearchField()) { this._sfun.SearchUnhilite(); this._sfun.SearchClose(); } else { this._sfun.generateKey(e, KeyEvent.DOM_VK_RETURN);} desc: generates return key code type:

name: KillAccessKeys case: Common keyx: M-k body: this._sfun.killAccesskeys(e); desc: disables access keys type:

name: PreviousButton case: Common keyx: M-p body: this._sfun.moveButton(e, -1); desc: moves to the previous button type:

name: NextButton case: Common keyx: M-n body: this._sfun.moveButton(e, 1); desc: moves to the next button type:

name: Copy case: Common keyx: M-w body: goDoCommand('cmd_copy'); this._sfun.resetMark(e); desc: copies the region type: