Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Vim, vscode, sublime, I use all the of those intermittently and tester like all of them, airtight for different reasons and tasks.
I do have to say though, VSCode with the VSCodeVim extension... Pretty bloody good. I may have a new favourite. -
eclipse.
..
and srsly, it depends on the platform:
nano for putty sessions.
vi for console.
np++ for windows.
gedit for *buntu.
textmate for mac. -
vladde57ySublime Text simple file editing (it is just a very advanced text editor)
Visual Studio Code for bigger projects
...
Then you have all of the big IDEs like Visual Studio, Intellij etc -
I never learn to not comment in rants like this. I only get a lot of one word comments notifications xD.
-
I was half expecting to see Atom but it's good to see people have brought their sense with them today.
-
anekix3947yThis question is to anyone using vim?How do you manage large projects with many files.i mean what if system crashes or shut downs and after restarting you get ao may lock files or something?In sublime or jetbrains ide or atom or vs code you just start from there without loosing anything. Just curious as I like vim commands but this is holding me back
-
l0om17167yNeovim, vim or ST3. In this order. 😜
How can anybody code using nano? It's ok for a small remote edit on a config file but *actually* coding in nano? I don't get it... -
@anekix Vim creates .swp files with the last snapshot. when you reopen they ask if you want to recover
-
@anekix As @edwrodrig said.
vim -r -> to list swap file
vim -r file.swp -> recover a crashed editing session
(or see man vim for more info xD) -
@vladde VSCode is just a really advanced text editor as well. Most of the things in this thread are. I'm also not sure you really understood what this was supposed to be about: lightweight editors, not honking great IDEs with a million features no one ever uses.
-
@anekix others have mentioned .swp files. Also you could use ctrl+p for quickly finding different files.
No matter what I use, I never have more than 2-4 files open at the same time. If I have to be jumping between that many files, it's time for refactoring and reorganising the project ... -
l0om17167y@rusty-hacker I totally agree. Also, closing files when you're done with them is a good thing to do.
-
Geany's a pretty good but rarely mentioned one in my opinion. It features a nice compile hotkey and a notepad to add a simple todo list to a file. Its like a better Notepad++ in my opinion, with the downside of being (I believe) Linux exclusive
-
dhanvi7107y
Best lightweight editor for coding?
undefined