mirror of
https://github.com/samsonjs/repl-edit.git
synced 2026-03-26 09:35:50 +00:00
Compare commits
No commits in common. "master" and "v0.9.4" have entirely different histories.
3 changed files with 5 additions and 16 deletions
10
Readme.md
10
Readme.md
|
|
@ -1,13 +1,3 @@
|
||||||
# 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
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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) {
|
||||||
|
|
|
||||||
|
|
@ -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.5",
|
"version": "0.9.4",
|
||||||
"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,6 +29,5 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {},
|
"devDependencies": {}
|
||||||
"optionalDependencies": {}
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue