Live data from Hacker News

Ask HN: What code editor do you use?

news.ycombinator.com

51–60 of 144 posts

Re: Ask HN: What code editor do you use?

#51
post #40

I used TextMate for a couple of years but lately switched back to vim. This time I invested in a good vim setup with plugins to fill in places where it wasl lacking compared to TextMate. the config can be found at http://github.com/astrails/dotvim There is a (rather long) README with explanations of what is there and short instructions of basic use.

That is a great vim setup you have there. Thanks for sharing that!

Re: Ask HN: What code editor do you use?

#53

Earlier quoted context omitted.

Komodo Edit (Mac) with the Vim bindings turned on. It's lightweight with some advanced features like code completion and basic project management (find & replace in project, etc).

I finally settled on Komodo as well.

I got Komodo IDE but it was way too slow on Mac. Not sure why. I switched over to Netbeans 6.9.

Re: Ask HN: What code editor do you use?

#54
Notepad++ for html\css\javascript\python all at once. The dynamic highlighting based on the context of the cursor position is clutch for web work. Makes it easier to take care of all the cascading changes in your templates and stylesheets.

WingIDE hands down if its just python or a ton of python. Emacs for servers and CygWin.

Re: Ask HN: What code editor do you use?

#56
post #44

EditPlus because it does what I need and very little more. Has add-ons for just about any language I've every needed to program in, but still simple for all that.

Herehere! I love me some edit plus. I've been using it since college.

I usually use EditPlus for my notepad replacement as well as any regex functions or searches I need to do.

For any system-based programming, I do everything in Eclipse because it automatically interfaces with my SVN and deploy servers.

Re: Ask HN: What code editor do you use?

#57
on Windows, Textpad does well both with 1) a lot of files or 2) really big files. Ok, I've only opened files of about 125Mb on it. Takes a few seconds to load it, but once up, it flies. If you have a lot of files open, the tabbed UI doesn't really help, so you can F11 for the Document Selector sidebar.

These days while on Windows I often have gVim, Sublimetext and Texpad open simultaneously. The minimap is cute, but have never found it useful, still Sublime is almost as snappy as TP.

Re: Ask HN: What code editor do you use?

#58
post #36

I used to use jEdit, which is still a very nice editor. And it ran on Mac/Unix/Windows, which was good because I moved among all three systems. But the last I looked (three or four years ago) development had stalled. And I got into a job where I periodically had to SSH to various Solaris boxes and edit on the console, in Vim. I knew just enough Vim to edit config files and simple shell scripts without too much pain.…

I couldn't ever give up vi key-bindings but I liked the rest of emacs more, so I use emacs in viper-mode (comes built-in), which emulates vi. You can use emacs as a modal editor but still fall back on all the emacs functionality.

For most of the time it works like the best of both worlds, but it's not perfect . You can't use viper-mode in every mode and it's obviously not full vi(m) emulation. Installing the vimpulse.el script (google it) adds a lot of missing vim functionality though.

Re: Ask HN: What code editor do you use?

#59
post #52

vi, Xcode, Xemacs, Eclipse, textedit. That's a good start. Depends on what is handy. emacs wins for super-large files (>1GB).

Other than logs, do you handle text files > 1GB?

Not logs. The gate-level EDIF of a full chip can be pretty big... Sometimes you need to check out exactly how two logic gates were generated by synthesis.

Re: Ask HN: What code editor do you use?

#60
post #3

I somewhat suspect I'll be unique on this one here. I use nano full-time. I use it because it is simple, it gets the job done, and I don't find that I need anything more. It's true it's missing a couple of features commonly found in code editors. But when I start thinking code folding would be useful, I take it as a sign that this file is getting too large and would be better split. Nano also obeys the simple UI prin…

I actually used Nano for a long time as well! I'd been using Pine since 1994 so it always felt quite natural.

If Vim wasn't always available when Nano was, I'd still use it. ;^)

Post reply on HN