1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 13:27:58 +01:00

external editor support

This commit is contained in:
Martin Stubenschrott
2007-10-19 18:15:09 +00:00
parent 0a01a5317b
commit 2c9fb23632
5 changed files with 113 additions and 2 deletions

View File

@@ -421,6 +421,16 @@ function Options() //{{{
default_value: "google"
}
));
addOption(new Option(["editor"], "string",
{
short_help: "Set the external text editor",
help: "Sets the editor to run when <code class=\"mapping\">&lt;C-i&gt;</code> " +
"is pressed in INSERT and TEXTAREA modes. Note that vimperator will " +
"not behave correctly if the editor forks its own process, such as with "+
"gvim without the -f argument.",
default_value: "gvim -f"
}
));
addOption(new Option(["extendedhinttags", "eht"], "string",
{
short_help: "XPath string of hintable elements activated by ';'",