How about an embedded Lisp interpreter?
At one point, REPL first editors (ipython notebooks, etc) will meet edition based IDE (them) in an essential cosmic spark and nothing will ever be the same ever again.
Design of a Vim-like text editor
21–30 of 92 posts
Re: Design of a Vim-like text editor
#22Earlier quoted context omitted.
At one point, REPL first editors (ipython notebooks, etc) will meet edition based IDE (them) in an essential cosmic spark and nothing will ever be the same ever again.
Isn't that LightTable? I think they discovered actually everything would remain largely the same.
Re: Design of a Vim-like text editor
#23Why not write a rich-text editor instead? Or a webbrowser? Seriously. They seem like more interesting endeavours to me. Especially if you document every step of the way. In fact, you could write a book about it.
Re: Design of a Vim-like text editor
#24Earlier quoted context omitted.
At one point, REPL first editors (ipython notebooks, etc) will meet edition based IDE (them) in an essential cosmic spark and nothing will ever be the same ever again.
IntelliJ sort of has this for Scala. Scala Worksheets. They are more useful than a REPL, but not quite to iPython in terms of features (mainly because they aren't browser based). But they also have some advantages over iPython (like integrating many of the IDE features).
Re: Design of a Vim-like text editor
#25Re: Design of a Vim-like text editor
#26Earlier quoted context omitted.
At one point, REPL first editors (ipython notebooks, etc) will meet edition based IDE (them) in an essential cosmic spark and nothing will ever be the same ever again.
IntelliJ sort of has this for Scala. Scala Worksheets. They are more useful than a REPL, but not quite to iPython in terms of features (mainly because they aren't browser based). But they also have some advantages over iPython (like integrating many of the IDE features).
The downside of course is that Python is very dynamic - so IDEs are of relatively limited use.
Re: Design of a Vim-like text editor
#27Re: Design of a Vim-like text editor
#28Just a wish.
Re: Design of a Vim-like text editor
#29in config.mk, change the line :
CFLAGS += -std=c99 -Os ${INCS} -DVERSION=\"${VERSION}\" -DNDEBUG -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700
to:
CFLAGS += -std=c99 -Os ${INCS} -DVERSION=\"${VERSION}\" -DNDEBUG
The flags (the removed ones), trigger the "__BSD_VISIBLE 0" macro that makes the signal "SIGWINCH" unavailable, as they are used in vis.c
Re: Design of a Vim-like text editor
#30[deleted]