TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Why Atom Won't Replace Vim

3 点作者 Ovid大约 11 年前

2 条评论

gregjor大约 11 年前
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 未加载
dredmorbius大约 11 年前
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.