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:
@@ -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
|
||||
]
|
||||
]/*}}}*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user