1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 20:07:59 +01:00

move global beep() command to a vimperator slot

This commit is contained in:
Doug Kearns
2007-07-02 10:29:02 +00:00
parent 0b8ecb0d71
commit abc8370a61
4 changed files with 19 additions and 19 deletions

View File

@@ -558,7 +558,7 @@ function Events() //{{{
// no mapping found, beep()
if (vimperator.hints.currentState() == 1)
{
beep();
vimperator.beep();
vimperator.hints.disableHahMode();
vimperator.input.buffer = "";
vimperator.statusline.updateInputBuffer(vimperator.input.buffer);
@@ -570,7 +570,7 @@ function Events() //{{{
var res = vimperator.hints.processEvent(event);
if (res < 0) // error occured processing this key
{
beep();
vimperator.beep();
//if(vimperator.hints.currentMode() == HINT_MODE_QUICK)
if(vimperator.hasMode(vimperator.modes.QUICK_HINT))
vimperator.hints.disableHahMode();
@@ -656,7 +656,7 @@ function Events() //{{{
{
vimperator.input.buffer = "";
vimperator.input.pendingMap = null;
beep();
vimperator.beep();
}
}
vimperator.statusline.updateInputBuffer(vimperator.input.buffer);
@@ -1003,7 +1003,7 @@ function Tabs() //{{{
var index = indexFromSpec(spec, wrap);
if (index === false)
{
beep(); // XXX: move to ex-handling?
vimperator.beep(); // XXX: move to ex-handling?
return false;
}
getBrowser().mTabContainer.selectedIndex = index;