mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 06:58:00 +01:00
* Initial code for "waiting" macros. Still buggy/incomplete, but commiting, before merging other patches becomes even more tedious.
* Also a new attempt that pages don't have input focus after load, probably buggy as well
This commit is contained in:
@@ -145,14 +145,14 @@ vimperator.IO = function () //{{{
|
||||
return this.getCurrentDirectory();
|
||||
},
|
||||
|
||||
getPluginDir: function ()
|
||||
getSpecialDirectory: function (directory)
|
||||
{
|
||||
var pluginDir;
|
||||
|
||||
if (WINDOWS)
|
||||
pluginDir = "~/vimperator/plugin";
|
||||
pluginDir = "~/vimperator/" + directory;
|
||||
else
|
||||
pluginDir = "~/.vimperator/plugin";
|
||||
pluginDir = "~/.vimperator/" + directory;
|
||||
|
||||
pluginDir = this.getFile(this.expandPath(pluginDir));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user