What are your preferred text editors for each language?
1–10 of 22 posts
Re: What are your preferred text editors for each language?
#2Re: What are your preferred text editors for each language?
#3Re: What are your preferred text editors for each language?
#4If there is no good completion solution, then I'll cheat. Grep to the definition (or jump with tags), open it in a buffer and I can look at what is there. At that point the members are now available for "dumb" textual completion. I'll create helper function to do this.
Give me a few hours and I can match just about any IDE feature. The mechanical parts of the workflow are crazy fast and fluid.
Re: What are your preferred text editors for each language?
#5I do think they it could make things harder/easier. For example if I want to switch from C# (in Visual Studio) to any other editor - it feels like a less familiar experience (and will be less productive at first)
This not only effects writing code, but debugging methods as well.
Re: What are your preferred text editors for each language?
#6Re: What are your preferred text editors for each language?
#7i add linters per language, and documentation lookup and autocompletion.
the only time i have a problem is with new projects where a file tree would be useful. there are vim file trees, but i dislike them.
Re: What are your preferred text editors for each language?
#8Re: What are your preferred text editors for each language?
#9Visual Studio - C#
Notepad ++ - Any text file I need quick access to, cut/paste
Visual Studio Code - Trying it out to replace Notepad++
Android Studio - Native Android Apps
WebStorm - JavaScript and front end projects
IntelliJ IDEA - JAVA
Re: What are your preferred text editors for each language?
#10My procedure for selecting an editor starts by taking an online class and using whatever tool the expert is using. I figure their reasons for using said tool in a given stack is probably more reasonable than anything I can come up with in my comparatively limited experience. That said, it looks like this: Visual Studio - C# Notepad ++ - Any text file I need quick access to, cut/paste Visual Studio Code - Trying it ou…