Finish removing require.paths

Fix require() completion bug in repl, and correct man output
pull/5370/head
isaacs 2011-07-24 18:04:45 -07:00
parent db993956d6
commit c050d0fa19
3 changed files with 5 additions and 6 deletions

View File

@ -44,8 +44,7 @@ and servers.
.SH ENVIRONMENT VARIABLES
.IP NODE_PATH
\':\'\-separated list of directories prefixed to the module search path,
require.paths.
\':\'\-separated list of directories prefixed to the module search path.
.IP NODE_MODULE_CONTEXTS
If set to 1 then modules will load in their own global contexts.

View File

@ -298,8 +298,9 @@ REPLServer.prototype.complete = function(line) {
var filter = match[1];
var dir, files, f, name, base, ext, abs, subfiles, s;
group = [];
for (i = 0; i < require.paths.length; i++) {
dir = path.resolve(require.paths[i], subdir);
var paths = module.paths.concat(require("module").globalPaths);
for (i = 0; i < paths.length; i++) {
dir = path.resolve(paths[i], subdir);
try {
files = fs.readdirSync(dir);
} catch (e) {

View File

@ -2259,8 +2259,7 @@ static void PrintHelp() {
"\n"
"Enviromental variables:\n"
"NODE_PATH ':'-separated list of directories\n"
" prefixed to the module search path,\n"
" require.paths.\n"
" prefixed to the module search path.\n"
"NODE_MODULE_CONTEXTS Set to 1 to load modules in their own\n"
" global contexts.\n"
"NODE_DISABLE_COLORS Set to 1 to disable colors in the REPL\n"