TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Why Atom Won't Replace Vim

3 pointsby Ovidabout 11 years ago

2 comments

gregjorabout 11 years ago
Good article. One quibble:<p>&quot;But of course, Vim isn’t perfect. ...[Y]ou need to install a half-dozen third-party plugins (and a third-party plugin manager at that) to get basic functionality working.&quot;<p>I&#x27;ve been using vi and now Vim since 1980. I don&#x27;t use any third-party plugins, so I don&#x27;t need a plugin manager. I do almost no customizing. I have much more than &quot;basic functionality&quot; with a bare-bones Vim install. Why? Because Vim is installed on pretty much every *nix system. When I ssh into a server I can&#x27;t afford to be helpless because my favorite plugins and scripts and key bindings aren&#x27;t there.<p>I can skip hours of &quot;on-boarding&quot; because I&#x27;m happy to work with bare Vim and other command-line tools on OSX or Linux. I don&#x27;t need to spend a day getting Eclipse configured or setting up a bunch of other stuff just to edit and build code.<p>Emacs is almost, but not quite, as ubiquitous as Vim. I use Vim because I learned vi a long time ago and have never wanted to put that much effort into learning another text editor.
评论 #7751518 未加载
dredmorbiusabout 11 years ago
The atomic &quot;noun verb&quot; structure of vim&#x27;s commands is in fact highly versatile. For me, being able to operate on, search across, or navigate my text by <i>structure</i> is absolutely key.<p>It&#x27;s not far from the Unix philosophy in general -- we get simple tools and send nouns (data) through them on pipes. Not always, but frequently. I recognized this distinction particularly from working on other systems which didn&#x27;t have this facility: VMS, MVS, and of course Microsoft and Apple systems prior to OS X.<p>You rarely have the specific tool you want, but you can readily build it up out of components via pipes and some shell scripting. As opposed to the other systems where you rarely have the specific tool you want ... and you need a systems programmer to write it for you.