Compare commits

...

3 commits

Author SHA1 Message Date
Sami Samhuri
0a0da46ad4 he's dead, Jim 2013-03-13 23:03:20 -07:00
Sami Samhuri
11b8a6246b 0.9.5 2012-07-11 11:18:36 -07:00
Sami Samhuri
5ccbb46c81 fix for node v0.8.x 2012-07-11 11:18:18 -07:00
3 changed files with 16 additions and 5 deletions

View file

@ -1,3 +1,13 @@
# I'M NOT DEAD, I'M JUST RESTING
Beautiful plumage. But this project no longer functions and some of the functionality here has been implemented
in Node proper via .load and .save in the REPL. I will no longer maintain it (poorly and infrequently).
If you want to contribute a .edit command to Node that would be pretty snazzy. Now that the REPL sucks less
it's less pressing though. You can paste in some code the REPL doesn't understand, or broken syntax, and
then Ctrl-C your way out of it.
repl-edit repl-edit
========= =========
@ -52,4 +62,4 @@ License
Copyright 2010 - 2011 Sami Samhuri <sami@samhuri.net> Copyright 2010 - 2011 Sami Samhuri <sami@samhuri.net>
MIT license, see the included [LICENSE](/samsonjs/repl-edit/blob/master/LICENSE) MIT license, see the included [LICENSE](/samsonjs/repl-edit/blob/master/LICENSE)

View file

@ -23,7 +23,7 @@ function startRepl() {
console.error('repl is already running, only one instance is allowed') console.error('repl is already running, only one instance is allowed')
return return
} }
return extendRepl(replModule.start()) return extendRepl(replModule.start('> '))
} }
function log(s) { function log(s) {

View file

@ -1,7 +1,7 @@
{ {
"name": "repl-edit", "name": "repl-edit",
"description": "Edit code in the repl using a real text editor", "description": "Edit code in the repl using a real text editor",
"version": "0.9.4", "version": "0.9.5",
"homepage": "http://samhuri.net/proj/repl-edit", "homepage": "http://samhuri.net/proj/repl-edit",
"author": "Sami Samhuri <sami@samhuri.net>", "author": "Sami Samhuri <sami@samhuri.net>",
"repository": { "repository": {
@ -29,5 +29,6 @@
} }
], ],
"dependencies": {}, "dependencies": {},
"devDependencies": {} "devDependencies": {},
} "optionalDependencies": {}
}