Why, oh WHY, do those nutheads use vi?
I’ve written an advocacy article… well, no it’s not advocacy… well, YES, it IS an advocacy article, about vi/vim editing. The main goal is to have an explanation so that NON-vi(m)ers can understand what the fuss is all about, and why me, and many other thousands of people (including all my customers) still use vi/vim, and (at least my customers) go as far as paying me $70 for the privilege if they happen to use Visual Studio, Word, Outlook or SQL Server. Many of them even deem it a bargain.
Without further ado:
Why, oh, WHY do those #?@! nutheads use vi?
Enjoy!
May 17th, 2007 at 9:43 pm
Great article.
I remember learning vi over 15 years ago (using hjkl on a vt100 terminal no less), and I hated it for the first couple of months.
But it’s true. Once you ‘get it’, you’ll never go back.
May 17th, 2007 at 9:47 pm
There is even a vim plugin for firefox: http://vimperator.mozdev.org/. I agree that the editing commands are absolutely indispensable when editing. Thanks for the great post!
May 17th, 2007 at 9:48 pm
Great article! Can’t believe I’ve used vi for so long without using the . trick
May 17th, 2007 at 10:38 pm
Great article! A couple nits:
1) In the 1st example, you are not deleting the semicolons at the end of lines 2 and 3. I think you should delete the semicolons first, perform the A command second.
2) In example #2, you can use the p command to “put” the contents of the buffer back into the file. No need to use Ctrl-R which is a vim-only command
I use mostly plain-vanilla “vi” most of the time; but your article convinced me to go and take a look at all the additional “vim” commands.
May 17th, 2007 at 10:41 pm
What I can’t stand is the nutheads who use vi but can barely use it. They append to a line by using the arrow keys to get to the end of the line, then type i, then type the right arrow. They add a new line by using the arrow keys to get to the end of the line, then type i, then type the right arrow, then press enter.They revert back without saving by quitting vi and starting it again.
Watching this makes me want to go jump out of a window.
I wish some people would go back to using Notepad.
May 17th, 2007 at 11:42 pm
VISEARCH.COM !
VI + Web Search = http://VIsearch.com
Powered by and created by Snap.com
May 18th, 2007 at 12:08 am
Great article. I’m a committed Vimhead, and I’m only using it to compose text and write the occasional Python or bash script. I can’t begin to imagine the near-biblical power it must hold for the true coder. Modal editing in itself was a revelation for me when I made the switch from lesser editors. Thanks!
May 18th, 2007 at 12:16 am
You’ve almost converted me. When I heard about software to emulate vi I thought people were crazy… vi is only what I used on locked down systems, or until I got emacs installed. But I see now it’s a shortcut junkie’s best friend, great article!.
May 18th, 2007 at 1:29 am
This is among the best Vi/m advocacy articles I have read - well done.
…if you’re going to be editing code 8 hours or more a day for years, it’s the second best investment after learning touch typing (which you already know, right?…
I think you could expand on the touch-typing prereq - without it, learning Vi/m is even more agonizing.
May 18th, 2007 at 2:02 am
Speaking as a life-long Emacs user, I just wanted to say: I like vi too! It was a challenge to learn either one, but when I’m dealing with a system where Emacs isn’t viable (i.e. too big), the smart, compact vi editor does just as nice a job.
This article has opened my eyes to new tricks I didn’t know vi could do! Thanks for the great tutorial!
May 18th, 2007 at 2:24 am
Thanks a lot to all of you for the great comments.
Hernan: (1) at least in vim, ‘.’ repeats the too, so no need to do anything beyond using ‘j’ to position yourself in the right line, and pressing ‘.’ to do the whole operation. And (2): Ctrl-R,” allows you to enter it while typing the declaration - you have to type the variable type and the semicolon by hand, so addding the paste in the middle is just more comfortable. “bool varname = ;P” would do it, too, but it’s more awkward for me.
May 18th, 2007 at 2:31 am
Your article is much prettier than mine. I should learn to do more screen shots and stuff. I am saying a lot of the same things, but they’re prettier on your page. ‘hi tim guifg=jealous’
http://tottinge.blogsome.com/use-vim-like-a-pro/
May 18th, 2007 at 2:41 am
Hey Tim. Doing screenshots is a huge effort, it took hours. And we humans are mainly visual beings. I saw your page, it’s cool, but it’s too dense. Well, it will be more useful than my article for someone who is actually putting the effort to learn, but most people are before that stage. After my article, people would do well to visit your tutorial for actual means to learn. I just showed the nicest features in the most immediate way.
May 18th, 2007 at 4:06 am
You realize that the “VI Gangsign” is the shocker.
May 18th, 2007 at 4:19 am
Speaking of screenshots, you may or may not be familiar with Michael Schwarz’s ScreenShot script for Vim, which generates HTML depicting a non-image “screenshot” of Vim’s current window, with color scheme, formatting, syntax highlighting, etc. intact. The results look like images, but aren’t. It’s really quite a brilliant thing if you have need of Vim screenshots but don’t want to mess with images.
http://www.vim.org/scripts/script.php?script_id=1552
I hope you won’t mind the plug. I’m not “shilling” or anything; I just thought it might be useful.
May 18th, 2007 at 5:04 am
Nicely summed up.. ever typed i or :wq on a non-vi editor?? I desperately need a vi plugin/greasemokey for my firefox textboxes.
May 18th, 2007 at 8:57 am
I must say a counter-argument here, which I saw repeatedly to be true: people in fact can and do master very bad systems (whether they be editors, frameworks, etc). Once they mastered them, for these people these are no longer bad systems, but very ‘useful and effective’ tools. I think you can think about this for a moment.
May 18th, 2007 at 10:16 am
I just wish there was an easy answer for us dvorak people, hjkl are moved from the home row. Maybe there could be a Dvorak-Qwerty mode (like on my Mac); when in insert mode you type in Dvorak, but when in command mode it works in qwerty.
Also, I’d love to move the movement keys to the right by one key so they lay under the resting spot for the true touch typist.
May 18th, 2007 at 11:06 am
One should use ‘=aB’ for indenting a block. ‘>aB’ will just shift to the right the whole block and it’s not ok when some lines should be shifted to the left. Thanks for the article.
May 18th, 2007 at 1:41 pm
Ok, I’ll prepare a two-handed version of the “vi gang sign” to avoid connotations, as done here:
http://www.flickr.com/photos/x180/473801152/
May 18th, 2007 at 3:22 pm
I’ve used vi a bunch, but I don’t “get it”.
What about refactoring tools?
I’m an IntelliJ user and I can do a bunch of refactorings that save me tons of time. Does VI have an answer for them?
For example, extract method, extract interface, Alt+Enter to create methods, Alt+Enter to add imports, live templates, ctrl+alt+t surround with try/catch and other block types.
IntelliJ can leverage knowledge about java class structure to do those refactorings and macros. Can vi do that? I doubt it. I don’t know everything, so I’m leaving myself some wiggle room.
http://www.jetbrains.com/idea/training/demos/overview.html
(everything this shows is keyboard driven as far as I am aware)
Oh, and it has C++ plugin too: http://plugins.intellij.net/plugin/?id=1373
No I don’t work for JetBrains, just LOVE Intellij IDEA!
May 18th, 2007 at 3:28 pm
“Using vi/vim properly, you don’t use it modally. You are always in normal mode, and only enter insert mode for short bursts of typing text, after which you press to go to normal mode.”
You don’t use it modally, here’s how you change modes.
Got it.
May 18th, 2007 at 3:34 pm
Jim, I believe vi editing + a powerful IDE are the best. They are not exclusive. I use Visual Studio’s Intellisense along with vi/vim editing. I’m looking forward to even more powerful IDEs. Your comment is spot on, but I don’t take it as “anti-vi”.
Waz: well, I possibly didn’t explain myself well. Technically, it’s of course modal. But even regular editing can be seen as technically modal: having shift pressed means “extend selection” for navigation keys. The mode is not “sticky”, though. I should have possibly made that clearer in the article: it’s technically modal, but mode changing is only used for a short burst of typing, rather than staying in it. Most people who come to vi think one would spend most time in insert mode while going back to normal mode some times, and that’s the mistake I was trying to address.
May 18th, 2007 at 3:59 pm
>I believe vi editing + a powerful IDE are the best
Fair enough. Combine vi editing with IntelliJ and you get the IdeaVIM plugin. I’m to the point where I don’t think I want to re-learn vi. I never use it enough to have it stick in my muscle memory (more than how to delete lines, switch modes, and save). I’m too lazy I guess.
>Your comment is spot on, but I don’t take it as “anti-vi”.
Right, not anti-vi, just anti-people-who-are-religious-about-tools (or OSes). I once had a professor that claimed: “I can get more done with vi and latex to do publishing than anyone with one of those WYSIWIG publishing tools!” He was probably right — back in the computer stone age he learned vi in. “Latex” might not be what he said, but insert whatever PostScript tool makes sense there.
I love IntelliJ, but I (hopefully) don’t preach it like a religion. You don’t seem to be a priest of the holy vi, just an advocate. Nice to know there are people who are not nutters and use vi.
I still use vi occasionally on *nix systems when I don’t know what editors are available and don’t care to find out or wait for KDE/Gnome to load.
May 18th, 2007 at 4:16 pm
vi may not be suitable for all editing needs but is the best editing tool for program source code regardless the language. As Jon pointed out, a typical programmer would spend about 90% of time moving around and 10% inserting new text. If so, doesn’t it make more sense to be in the command mode most of the time? Having the two modes is actually a blessing! You can accomplish so much more because of these two modes. Most of the editors which are always in the insert mode cannot do so. You have to use special key combinations, mouse, or function keys to accomplish seemingly simple tasks, forcing you to move your fingers off of the keyboard.
Yes, it does take a bit of time to learn it but once you’ve done so, you will see that your fingers will do most of the work for you without having to lift them off of the keyboard to use the mouse just to accomplish a simple task. Learn and you will never look back.
May 18th, 2007 at 4:59 pm
Your example #1 only works* in vim, and only then when the backspace option contains ’start’. This might be the default setup in the typical Linux but not everywhere. I never use vim configured that way, although your example gives a reasonable use case that requires it.
* That is, the initial backspace after entering insert mode via A to delete the semicolon.
May 18th, 2007 at 5:26 pm
Jim, I understand not everyone can put in the effort to learn vi, but I still like to help inform them what they are losing. If only so that they won’t look at us like we’re nuts.
Craig, you raise a point that I didn’t go into in the article. When editing code, you’re moving around most of the time, so a specialized tool that doesn’t lose most of the keys to typing makes all sense.
Curtis, I use gvim in Windows, and it’s always behaved like that. I implemented it like that in ViEmu, too. I only recently learned about the :set backspace setting. In any case, I think it makes sense to give the backspace key the most power, don’t you think?
May 18th, 2007 at 6:18 pm
Gah! I *really* want that vi emulator for Eclipse, but the site seems to be down. Anyone know for sure if the plugin is still available, and does it work with Eclipse 3.1?
May 18th, 2007 at 6:20 pm
The viPlugin site was up yesterday, so it’s probably just a matter of waiting until it comes back.
May 18th, 2007 at 9:21 pm
Very good article! ViEmu is the single most useful software released IMHO. I only wish you did not publish more article like this, I dont want anyone else being as productive as me. Let them use their crappy editors with all their Ctrl-C, Ctrl-V or the ever so powerful Ctrl-H! I have tried Esc-Meta-Alt-Ctrl-Shift (Emacs among friends), but vi will forever be my choice. Once you have driven a Ferrari, you will not go back to a hatchback.
May 18th, 2007 at 9:24 pm
Erlend, thanks for the kind comment. I will keep publicizing vi editing though
May 18th, 2007 at 11:35 pm
Thanks man! I used to be an emacs “user”. Isn’t confession one of the twelve steps to accepting you have a problem? Anyway, A kind friend introduced me to vi and I can’t go back ever. Long live VI!! Thanks for the great article!
May 19th, 2007 at 11:18 am
Nice answer to question that I have also asked after being face-to-face with vi when there is no other editor available. Your article motivated me to give at least few weeks for vim to show its capabilities!
May 19th, 2007 at 5:25 pm
I’m a long time vi/vim user. In fact I hate it when I’m on a system without vim. I find old vi to be inadequate.
My biggest concern with vim as a Visual Studio editor is “what about my intellisense. I’m not willing to give up intellisense for what vim offers me. Does intellisense work? Am I believing in a myth?
May 19th, 2007 at 6:08 pm
Hi Jay,
If you’re concerned with how ViEmu works, the easiest is to download it and try it out. Intellisense blends perfectly with vi editing - it only kicks in in insert mode, the ‘.’ command can repeate Intellisense-autocompleted input, etc… In ViEmu/Word&Outlook, orthography/grammatical autocorrection and autostyling (auto-smart quotes, ‘…’ ellipsis, etc…) work in insert mode, etc…
Myself and many hundreds of users use it every day, and, for vi-lovers, it’s a lifesaver.
Cheers,
Jon
May 19th, 2007 at 10:40 pm
I have always used vi and will continue to. When will this tool be available so I can use VI keystrokes in MSword on the Mac in OS X?
Mark
May 20th, 2007 at 3:33 am
Sridhar Iyer, you can use vi/vim to edit text areas in Firefox. Look into It’s All Text extension for Firefox that lets you specify external editor. I,m typing this in gVIM :).
May 20th, 2007 at 1:37 pm
Hi Gilbert, I’ve had a few requests for a Mac version, but unfortunately it’s not in the plans right now. I might do it in the future, but ViEmu/Word&Outlook is too tied to the Windows platform for it to be an easy port.
Mario, I’d love to have vi keystrokes right inside the browser - an external editor is always less comfortable.
May 22nd, 2007 at 11:06 am
This is such a great article, thanks for it.
I’ve learned quite a lot of things, especially the i command (yi(, yi[, …) and f are wonderful!
This could well be the article to convert some long-time regular editor users to vim.
May 23rd, 2007 at 9:09 am
Is it possible that Vi lovers are the way they are simply because they had to put so much effort into learning how to use a text editor?
Before someone bashes the heck out of me, yes I know it’s more than just a text editor it’s the greatest thing since sliced bread. I still prefer pico.
Regardless, thanks for the interesting read.
May 23rd, 2007 at 10:37 am
Although that’s maybe valid for some, it’s not very likely. It’s actually quite dumb to use something that slows you down and gives you nothing in return and i can’t imagine that’s true for so many people.
Learning Vi(m) takes not _that_ long, took me about a month to get fluent, and from then on maybe a few more months to get really proficient. Thats almost always overwhelmed by the long usage period afterwards, which ranges from years to tens of years.
It’s not that it takes long to learn basic Vi editing, after a few days you’ll reach your former editing efficiency easily, but from then on it takes some time to use Vi really effectively.
Many other text editors just don’t offer that much flexibility and control, and that’s why you can use them right away. But you won’t get the same efficiency out of them as you can get out of Vi.
Of course, if your current editor suits your needs and you feel comfortable with it, theres no real reason to change your tools. But understand that many Vi users didn’t think so of their former text editors and tried Vi with it’s steep learning curve, and the fact that most long-time users love it should make clear that it can’t be that bad once you’re into it.
May 23rd, 2007 at 2:42 pm
Ross, I hope the article is a better explanation than that
zoice, I agree on your points. I feel that only emacs is a contender at the same level. And I also think there is a huge gap for a new editor, which I’m working (the tentative name is ‘kodumi’). Hopefully, I will release 1.0 some time during this year. Ah, with great vi/vim emulation, of course!
May 24th, 2007 at 4:22 am
I’m not a programmer, but a long-time Unix sys admin. I’ve managed all manner of *nix boxen in the last 10 years, and no matter if it’s Solaris, HP-UX, IRIX, Linux, or AIX, things usually start with ‘export EDITOR=vi’. When I am forced to use some behemouth application to write a four-line email, there are usually several h’s, j’s, k’s, l’s, cw’s, x’s tha need dw’d before I can click send. Vi/Vim is always there. It always works. Great article. Thanks.
June 1st, 2007 at 7:01 am
I’ve used vi for quick edits for years now, and in all that time I’ve never come to like it. I’d rather recall a handful of key sequences that I can reuse for many situation, even if it takes me a couple extra seconds to execute, than learn hundreds of cryptic code combinations. Granted there’s some correlation between the letter used and the concept (B for block) but that’s not perfect and requires dozens of “letter clues” to recall too. So >aB does what? I use Shift-Down a few times and then Tab. Easy. To me it’s the difference between drawing a picture and describing it. Yes, a concise description can do wonders, but it can also easily SNAFU real quick like. When using vi I’m constantly correcting errors. Oops I’m not in insert mode. Oops I hit 55 rather than 5 –okay hit u, oops i’m not in insert mode again. **k. I find myself hitting the ESC key twice just to be sure. And that’s the other thing. You always here about the great hjkl keys so you don’t have to move your fingers, forgoing the Dvorak issue, my left hand is still always moving to the furthest upper corner of the keyboard to hit ESC so what’s the point? To me that’s worse. I’m used to using th arrow keys to move around. No other program except vi ever uses ESC constantly.
June 13th, 2007 at 2:10 am
This article led me to give vim a try again after using emacs and jEdit for years. I’m converted. Never looked back. Thanks.
June 13th, 2007 at 3:00 pm
burrowingowl: great! I’m very happy to hear the article convinced you to give vim a try. If you put in the required effort, I’m sure you won’t regret it. Thanks for letting me know!
July 7th, 2007 at 6:33 am
Since i already know many vim tricks, i would like to find a similar article about emacs… The only thing i remember about emacs, is that Backspace (ctrl+h) opens the help and save (ctrl+x ctrl+s, i guess) has a ctrl+s so it locks up the terminal
(until you press ctrl+q, which may be another command)
PS: “kodumi”… is this an Esperanto name?
July 7th, 2007 at 1:04 pm
Hi Ikk… unfortunately I can’t be of help with emacs.
And yes… kodumi estas esperanta nomo
It means ‘hacking’ in Esperanto. I liked the sound, too.
Congratulations, it’s first time someone identified the source of the name!!
August 7th, 2007 at 10:38 am
thanks for this excellent article. I’m a converted (x)emacser currently taking the steep curve and slurping articles with good tips or summaries.
Thanks again,
Sven
August 13th, 2007 at 8:14 am
Just to comment that I used vim full time between 1994 and 2000, both for writing papers in latex and for writing codes, but was forced out of it because I had to collaborate with others who only used Word. My typing speeds went down a lot in the 7 years since I stopped using vim. If your tool works for me in Word, I may be able to get back in to using vim … I look forward to trying it.
August 13th, 2007 at 1:28 pm
Hi Tom, I hope you enjoy ViEmu for Word. I use it for all email in Outlook, and for all documents I write, and I find it much more comfortable. When you enter insert mode, it’s mostly like the standard editing model, and then you can press Esc and gain all the power of vi!
September 18th, 2007 at 9:05 pm
Great intro, and great tips. I’ve been using Vim for only a few weeks, and it has already become indispensable. I sent a link to your article to my classmates in a beginning class in C++.
September 20th, 2007 at 7:17 pm
Thanks Vincent, I’m glad you liked it. I think you will find it more and more useful and indispensable in the future.
December 12th, 2007 at 1:47 pm
I don’t know how ‘orthodox’ it is, but I always use ^[ instead of Esc. Esc is just too damn far away.
December 12th, 2007 at 4:20 pm
Ovidiu: quite a few people use ^[. I’ve even had some requests to make ^[ work like Esc in Dvorak keyboards from ViEmu customers!
I sometimes do, but I usually just hit Esc.
December 30th, 2007 at 3:24 am
well, nice article!
it convinced me to at least give vi a try…
well, i think i’m gonna search for a similar pro-emacs article first
but seriously, i got a laptop a couple months ago, and text/code editing, among other things, is really a pain, especially when i’m not on a desk…vi’s way seems right…time will tell…
gotta learn touch typing too… :S (long overdue)
cheers!
:wq
December 31st, 2007 at 5:35 pm
Hey mits, I do suggest that you give touch typing some quality learning time, you’ll be happy you did. And after that, vi/vim is the way to go!!
Best regards and happy new year!
January 4th, 2008 at 3:29 pm
May I please briefly pimp PIDA (http://pida.co.uk/) It embeds Vim in a modern-looking IDE so you get the best editor, but in the housing of a much nicer UI. A bit like ViEmu thing I see advertised on this blog, but real Vim, and real free.
January 4th, 2008 at 4:33 pm
Hi Ali,
Pida looks nice for a general IDE built around vim. ViEmu has the advantage of providing it for Visual Studio (and Word, Outlook and SQL Server), which in some cases is a must. I’m the author of ViEmu so of course I’m biased, but I find VS+ViEmu a very useful and productive development environment.
Regards,
Jon
March 13th, 2008 at 9:01 pm
I remember how I used to find vi (and emacs) a ridiculous abomination at university, to the extent that I never wasted time learning the arcane details of either. After reading this article, I can see how vi would be much better than notepad.exe for writing code, but as far as it being hugely useful in a modern IDE, I’m totally unconvinced.
March 14th, 2008 at 8:20 pm
‘commenter’, I can’t provide much more info than what the article shows. There are many thousands of users who use vi editing integrated in an IDE, which is obviously good once you’re accustomed to vi/vim editing and you start coding using an IDE. But of course that’s everyone’s call to make. I for one would not want to go back.
And btw, I also found ‘vi’ weird and not worth it back in college. It took 15 more years until I discovered what there was underlying the awkward surface and get into it, with no way to go back
April 2nd, 2008 at 11:09 pm
great article.
few more things I like about vi:
1. no visual clutter - just your doc shown
2. small resource reqs, works fine even on old slow low-mem computers
3. you can use it over a remote shell to a prod server (to hack on code, config, or even just to read)
4. IDE’s sometimes make simple things complex or impossible due to poor UI or arch decisions; vi makes a lot of complex things simple and simple things are simple too
5. 2 & 3 mean I can use the same tool on ALL my machines, old and new, Mac/Lin/Win, local dev or remote prod- which let’s me be more productive by leveraging that skill set everywhere AND staying in The Zone more often
Background: my first IDE was Turbo Pascal, my last may be Eclipse, with lots others in between.
Mike Kramlich
ZodLogic Games
April 3rd, 2008 at 8:13 pm
Mike, thanks for your comments. Using it everywhere is a huge plus for me too. I use it in vim, in my own text editor, in VS, Word, Outlook, over SSH sessions to Linux servers… And I plan to keep on using it for many years to come, no matter what IDEs or editors I end up using. There will be vi emulation for anything I do, or for anything major.
My first IDE was Microsoft’s QuickC. That’s quite a trip down memory lane…
April 7th, 2008 at 4:44 pm
I’m starting to learn Vi now, loved your article and the chart is awesome !!
I have one question though, how do you copy a word and paste it. All that I can think of is dw, but that deletes the word, so undo and then take the cursor to where i want to paste it and type ‘p’. i know there must be a better way…
April 7th, 2008 at 4:46 pm
Shalini, thanks for the kind comment. The standard way to just copy is ‘yank’ (just ‘copy’ in vi terminology), which is done with the ‘y’ operator. ‘yw’ yanks from there to the next word start, ‘yiw’ yanks the whole word where the cursor is, etc…
April 7th, 2008 at 5:22 pm
Thanks for the prompt reply. It works great !!
I have another basic question. Is there a way to add a blank line without getting into insert mode ? I can think of o/O which adds a new line.. Thanks again
Shalini
April 8th, 2008 at 8:34 pm
Shalini, you’re welcome. Indeed, there is no easy way to that with a comment. I just use ‘o‘ myself, but you can map it to some key if you want. In vim, you can use multiple-key chord mappings:
:nnoremap _o o
:nnoremap _O O
In ViEmu, multiple key mappings aren’t supported yet, so you have to use some other mapping:
:nnoremap o O
:nnoremap
Of course you can map it to whatever you want.
April 15th, 2008 at 5:07 am
After spending 35 years in the programming business, I have found that the one universal editor is vi. It is even more important now that Unix and Unix like operating systems are going to be with us forever.
I have also found that the serious programmer can use it on almost any system and it even works even over high latency satellite links.
While I use other graphical editors whenever possible, I would be lost without vi.
April 15th, 2008 at 4:29 pm
Keith, I totally agree with you. I just wish I had started using vi 15 years ago, instead of 3 years ago.
April 18th, 2008 at 5:20 pm
Vimtutor is a great way to get started. Just my two cents…
April 18th, 2008 at 6:25 pm
Thanks for mentioning it Rui, indeed, vimtutor is a good way to get started (I used it myself back in the time).
April 19th, 2008 at 1:55 am
I hated VI, always. I first tried it in the 80s, then again in the 90s, before thanking the dear Lord for much better and updated alternatives. Even back then, emacs and micro emacs were totally more intuitive and made a lot more sense.
I don’t take away anything from those who used VI to the max to do their work. Good for them. But for people who just wanted to write code, and not bother to sit their and master dozens of commands, it sucked. Just my 2 cents.
April 19th, 2008 at 9:12 pm
Chris, I concede it’s not for everyone.
But I still reiterate that it’s a one time investment, and then it pays off very, very nicely for many years!