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

Typo and general idiocy fixes. Kill 'linksearch'.

This commit is contained in:
Kris Maglione
2010-12-17 12:30:51 -05:00
parent 714870525e
commit 9fb3febe95
16 changed files with 50 additions and 74 deletions

View File

@@ -771,7 +771,7 @@ const Editor = Module("editor", {
options: function () {
options.add(["editor"],
"Set the external text editor",
"The external text editor",
"string", "gvim -f +%l %f", {
format: function (obj, value) {
let args = commands.parseArgs(value || this.value, { argCount: "*", allowUnknownOptions: true })
@@ -789,7 +789,7 @@ const Editor = Module("editor", {
});
options.add(["insertmode", "im"],
"Use Insert mode as the default for text areas",
"Enter Insert mode rather than Text Edit mode when focusing text areas",
"boolean", true);
}
});