mirror of
https://github.com/samsonjs/repl-edit.git
synced 2026-03-26 09:35:50 +00:00
Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a0da46ad4 | ||
|
|
11b8a6246b | ||
|
|
5ccbb46c81 |
3 changed files with 16 additions and 5 deletions
10
Readme.md
10
Readme.md
|
|
@ -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
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.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": {}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue