1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-27 00:05:45 +01:00

Replace 'ignorecase' and 'smartcase' with 'searchcase'.

This commit is contained in:
Kris Maglione
2010-12-04 17:21:15 -05:00
parent a26b410daa
commit 23fba45b28
7 changed files with 34 additions and 42 deletions

View File

@@ -969,11 +969,9 @@ const Events = Module("events", {
this._input.motionCount = null;
if (!isEscape(key)) {
stop = false;
if (mode.main === modes.TEXT_EDIT) {
stop = (mode.main === modes.TEXT_EDIT);
if (stop)
dactyl.beep();
stop = true;
}
if (mode.main === modes.COMMAND_LINE)
if (!(mode.extended & modes.INPUT_MULTILINE))