1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 13:02:26 +01:00

Add go=r to toggle the scrollbar

This commit is contained in:
Kris Maglione
2008-12-04 15:58:19 -05:00
parent eb11ec2b06
commit b8d32c8e3d
6 changed files with 78 additions and 38 deletions

View File

@@ -232,9 +232,9 @@ function CommandLine() //{{{
this.wildtypes = this.wildmode.values;
this.wildIndex = -1;
this.prefix = this.context.value.substr(0, this.start);
this.value = this.context.value.substr(this.start, this.context.caret);
this.suffix = this.context.value.substr(this.context.caret);
this.prefix = this.context.value.substring(0, this.start);
this.value = this.context.value.substring(this.start, this.caret);
this.suffix = this.context.value.substring(this.caret);
if (show)
{
@@ -1372,7 +1372,7 @@ function CommandLine() //{{{
if (completions)
{
completions.context.reset();
completions.reset();
//completions.reset();
}
historyIndex = UNINITIALIZED;
removeSuffix = "";