What editor do you use?
Re: What editor do you use?
I remember also using sublime in the past to learn some html.
Re: What editor do you use?
I don't think elisp (Emacs Lisp) is very functional. It's commonly called "a bad Lisp," which, if I understand right, means it's more procedural than functional. Besides, Emacs is designed to be so customizable that I found I hardly needed to write any code when I used it. I spent more effort on learning the bindings for its internal multi-window system than on any configuration, I think. I guess I shouldn't be too certain about it since it's 20 years since I used it. Once I'd grasped some basics, I even found it fairly easy to read code despite all the parentheses. It's probably easier still now with modern highlighting schemes.nexos wrote:Good question. TBH, it's solely time constraints. Time I can spend on programming is at a premium, I don't want to learn a new editor and take a lot of time on it. I mean, I know the basics of Emacs, but I have settings changes I need in order to use it but don't want to learn a new language (Emacs Lisp), especially when I've never typed a line of FP code in my life.nullplan wrote:What's stopping you?
But I am going to switch eventually.
Kaph — a modular OS intended to be easy and fun to administer and code for.
"May wisdom, fun, and the greater good shine forth in all your work." — Leo Brodie
"May wisdom, fun, and the greater good shine forth in all your work." — Leo Brodie
-
- Member
- Posts: 78
- Joined: Tue Jun 07, 2022 11:23 am
- Libera.chat IRC: Cyao
- Location: France
- Contact:
Re: What editor do you use?
Noone is using CLion here?
CLion is quite nice when I have everything configured autocomplete, templates, error checking and more. The only problem is that it doesn't have a good makefile support, it works but sometimes don't see new files as a source file while using wildcards, so need to reload the project.
I would like to switch to/learn vim one day, but don't have the time for it atm, have a lot of school stuff.
CLion is quite nice when I have everything configured autocomplete, templates, error checking and more. The only problem is that it doesn't have a good makefile support, it works but sometimes don't see new files as a source file while using wildcards, so need to reload the project.
I would like to switch to/learn vim one day, but don't have the time for it atm, have a lot of school stuff.
-
- Member
- Posts: 510
- Joined: Wed Mar 09, 2011 3:55 am
Re: What editor do you use?
I discovered vigor a while a back and have been greatly impressed:
All of the graphical, point and click usability of vi, and it's just as free of EULAs and annoying paperclips as Word 97.
All of the graphical, point and click usability of vi, and it's just as free of EULAs and annoying paperclips as Word 97.
Re: What editor do you use?
I tried reading its website, but couldn't finish it since my eyes started to water. Is it satire or earnest?linguofreak wrote:I discovered vigor a while a back and have been greatly impressed:
All of the graphical, point and click usability of vi, and it's just as free of EULAs and annoying paperclips as Word 97.
Carpe diem!
Re: What editor do you use?
vim. And tabs.
Re: What editor do you use?
Poe's Law in perfection.nullplan wrote:I tried reading its website, but couldn't finish it since my eyes started to water. Is it satire or earnest?linguofreak wrote:I discovered vigor a while a back and have been greatly impressed:
All of the graphical, point and click usability of vi, and it's just as free of EULAs and annoying paperclips as Word 97.
Read that statement again:
"...the graphical, point and click usability of vi..."
Vi(m) is about many things, but certainly not point-and-click.
"...as free of EULAs and annoying paperclips as Word 97."
Word '97 introduced the infamous paperclip.
It's literally a "paperclip assistant" plugin.
Every good solution is obvious once you've found it.
-
- Member
- Posts: 510
- Joined: Wed Mar 09, 2011 3:55 am
Re: What editor do you use?
vigor is a work of satire. My statement about vigor was just going along with the joke (so not satire per se, but very definitely humor).nullplan wrote:I tried reading its website, but couldn't finish it since my eyes started to water. Is it satire or earnest?linguofreak wrote:I discovered vigor a while a back and have been greatly impressed:
All of the graphical, point and click usability of vi, and it's just as free of EULAs and annoying paperclips as Word 97.
-
- Member
- Posts: 510
- Joined: Wed Mar 09, 2011 3:55 am
Re: What editor do you use?
My favorite phrasing of Poe's law:Solar wrote:Poe's Law in perfection.
"A sufficiently advanced troll is indistinguishable from a genuine kook."
Re: What editor do you use?
I used to use Atom all the time, but since they decided to kill it off, I've moved over to VS Code.
I'm also on the waitlist for the Zed editor which is being led by the original Atom team and is the "spiritual successor". It's currently in a closed beta and for MacOS only. You can get on the list on their site.
I'm also on the waitlist for the Zed editor which is being led by the original Atom team and is the "spiritual successor". It's currently in a closed beta and for MacOS only. You can get on the list on their site.
- IsaccBarker
- Posts: 8
- Joined: Tue Jul 26, 2022 4:20 pm
Re: What editor do you use?
I used to use Vim, but now I use Helix. It just feels... smoother somehow.
Hello!
- stjepanbm
- Posts: 2
- Joined: Mon Dec 12, 2022 3:19 am
- Libera.chat IRC: stjepanbm
- Location: Split, Croatia
Re: What editor do you use?
Mix of Neovim &Visual Studio Code
Anything written in assembly will always be faster than C.
-
- Member
- Posts: 232
- Joined: Mon Jul 25, 2016 6:54 pm
- Location: Adelaide, Australia
Re: What editor do you use?
CLion user checking in. I got a full professional sub to the JetBrains suite from work and I like having the same IDE for almost everything I have to do (Rider for Unity, DataGrip for SQL, PyCharm for Python, CLion obviously). I also think it sits in a good mid-point for functionality and performance, not as heavy as Visual Studio, more user friendly than Eclipse and with more code analysis features than VSCode. It also has good Git integration which is important to me.Cyao wrote:Noone is using CLion here?
CLion is quite nice when I have everything configured autocomplete, templates, error checking and more. The only problem is that it doesn't have a good makefile support, it works but sometimes don't see new files as a source file while using wildcards, so need to reload the project.
I would like to switch to/learn vim one day, but don't have the time for it atm, have a lot of school stuff.
I mostly use CMake which seems to be pretty well supported, never had an issue with it picking up changes but I also make a habit of manually specifying my source files, I've heard that CMake has the same issue when globbing.
Re: What editor do you use?
vim for small changes (fixing typos in code that i discovered while building and such), otherwise VSCode with a few extensions.
LEEROOOOOOOOOOOOOOOOOOOOY JEEEEEENKIIIIIIIIIIINS!
- SeaLiteral
- Posts: 19
- Joined: Wed Sep 27, 2017 1:44 pm
Re: What editor do you use?
For OS programming, I use Gedit, probably because that's what Ubuntu comes with by default. And for other programming, sometimes I use Gedit, a few times I use Code::Blocks, and sometimes (but only for Python programming) I use IDLE. I don't feel like I really need collapsible blocks in my code, so Gedit seems good enough. But yeah, seeing everyone else using Vi and VSCode makes me wonder if I should use one of those for a while. I hope that the fact that I speak Danish (where "vi" means "we") and Spanish (where it means "I saw") isn't somehow biasing me against using Vi.