What is in a modern code editor?
blog.meain.io
What is in a modern code editor?
1–6 of 6 posts
Re: What is in a modern code editor?
#2I like to play with new toys. However, it's hard to find solutions for novel tech, though.
Re: What is in a modern code editor?
#3Yes, being able to look up .info manuals in Emacs is so useful.
Emacs is so good at it that it has 5 different options, eshell, term, shell, vterm and eat.
6, actually: while you should never use it, Emacs has ansi-term.
Re: What is in a modern code editor?
#4Looking up docs: While you can look up docs outside the editor in your browser, it makes it much faster and easier to look up docs within your editor Yes, being able to look up .info manuals in Emacs is so useful. Emacs is so good at it that it has 5 different options, eshell, term, shell, vterm and eat. 6, actually: while you should never use it, Emacs has ansi-term.
Re: What is in a modern code editor?
#5Something I think would be useful would be to stop trying to distinguish any meaning between “text/code editor” and “IDE”. Those 2 distinctions don’t really work today because modern editors have pretty much everything an IDE would have.
It’s an anachronism from a time when text editors really did very little but edit text, most of the modern ones today have debuggers, intellisense, syntax highlighting, code lenses and plugins as standard.
Language servers also changed the architecture even more by moving the heavy lifting somewhere else and being able to plug back into any UI.
It’s much more of a blurred line today.
Re: What is in a modern code editor?
#6Nice round up Something I think would be useful would be to stop trying to distinguish any meaning between “text/code editor” and “IDE”. Those 2 distinctions don’t really work today because modern editors have pretty much everything an IDE would have. It’s an anachronism from a time when text editors really did very little but edit text, most of the modern ones today have debuggers, intellisense, syntax highlighting,…