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

ex parser for use with .vimperatorrc, the command line and other sourced files. sourced files are no longer javascript code, but can use the new :javascript ex command to execute javascript. :javascript also supports multiline with heredocs (:js <<EOF). File completion for the :source command.

This commit is contained in:
Viktor Kojouharov
2007-04-22 14:17:28 +00:00
parent 6322db0107
commit 3ddfb11add
6 changed files with 179 additions and 54 deletions

View File

@@ -63,17 +63,6 @@ var g_settings = [/*{{{*/
null,
null
],
[
["completeopt", "cot"],
"Define how command line completion works",
"Not implemented yet.",
function(value) { set_pref("completeopt", value); },
function() { return get_pref("completeopt"); },
"stringlist",
"menu",
null,
null
],
[
["extendedhinttags", "eht"],
"XPath string of hintable elements activated by ';'",
@@ -221,6 +210,17 @@ var g_settings = [/*{{{*/
false,
null,
null
],
[
["wildmode", "wim"],
"Define how command line completion works",
"Not implemented yet.",
function(value) { set_pref("wildmode", value); },
function() { return get_pref("wildmode"); },
"stringlist",
"menu",
null,
null
]
]/*}}}*/