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

trivial formatting improvements

This commit is contained in:
Doug Kearns
2008-10-05 09:55:56 +00:00
parent d89df7c4e1
commit 86adfc396a
5 changed files with 17 additions and 17 deletions

View File

@@ -93,23 +93,17 @@ liberator.IO = function () //{{{
liberator.options.add(["cdpath", "cd"],
"List of directories searched when executing :cd",
"stringlist", cdpath,
{
setter: function (value) expandPathList(value)
});
{ setter: function (value) expandPathList(value) });
liberator.options.add(["runtimepath", "rtp"],
"List of directories searched for runtime files",
"stringlist", runtimepath,
{
setter: function (value) expandPathList(value)
});
{ setter: function (value) expandPathList(value) });
liberator.options.add(["shell", "sh"],
"Shell to use for executing :! and :run commands",
"string", shell,
{
setter: function (value) liberator.io.expandPath(value)
});
{ setter: function (value) liberator.io.expandPath(value) });
liberator.options.add(["shellcmdflag", "shcf"],
"Flag passed to shell when executing :! and :run commands",