Live data from Hacker News

Ask HN: What is a good scriptable text editor

news.ycombinator.com

11–18 of 18 posts

Re: Ask HN: What is a good scriptable text editor

#11
Sed and Awk are the traditional old school tools for scripting edits of large text files. Perl is a more recent option. And there's nothing wrong with using Python or Ruby or whatever.

On the Emacs versus Vim, Emacs is fatter with features by design. Vim is designed to be lighter weight so it can ship on memory constrained systems by default. The Emacs community tends to have a more substantial interest in scripting and customization and one of its features is built in tooling for writing scripts, e.g. the eLisp REPL.

Good luck.

Re: Ask HN: What is a good scriptable text editor

#12

Earlier quoted context omitted.

+1 especially neovim

I was hoping for something with GUI because I'm lazy, but I really should stop putting off learning vim :|

Vim is perfect for lazy people. Trust me, I know about laziness :)

Just picture this: You want to delete one line in your file. With Vim you just press 'dd' (that's 'd' two times). Not impressive, right? But what if you wanted to delete 27 lines? Are you going to select them with your mouse while counting? You might prefer to type '27' and then 'dd'. Done.

Do you want to jump to line 2135? type :2135 and press enter. What if I want to find a string? /string. Oh, and then I could just press 'n' for the next occurrence.

I needed years to only grasp a few Vim tricks, but every single one of them is almost mind blowing. I've only find Sublime Text to be a rival, for other reasons (multiple cursors are ideal to trim log files 100x faster while troubleshooting).

Re: Ask HN: What is a good scriptable text editor

#16
> I'm looking for a good text editor that has a simple and quick scripting capability.

Vim and Emacs have neither of these things. They both pose a long and difficult barrier to entry.

However it sounds like you aren't looking for simple and quick. If you are running into limitations on your current editor, then it's time to swallow the pill and dive into one of the behemoths.

I don't know of any text editor that is guaranteed to have less limitations than Sublime Text, but also has a "simple and quick scripting capability".

I would recommend Vim as it's main focus is as a text editor. Emacs tries to do everything, Vim just tries to edit text. Emacs also has a mode that enables Vim key bindings, so if you choose Emacs later, you won't have to start from scratch.

Lastly, Emacs uses a dialect of Lisp for customization. Vim has it's own made up language. So this may be a reason to choose Emacs over Vim.

Re: Ask HN: What is a good scriptable text editor

#17

Emacs. The whole thing is a bunch of running scripts, and you can manipulate all of it almost an way that you like. Add your own, muck with the ones that are there, even screw with things that are actively running.

Emacs is nice way to discover live-action coding against a running process. Design time, dev-time, compile-time, and run-time all mesh into one.

Everybody needs to give a live-action language like Smalltalk or lisp a try at least once.

Post reply on HN