[link] Vim 101: A Beginner's Guide to Vim
Vim 101: A Beginner's Guide to Vim by Joe Brockmeier.
Bit too vi-ish IMO, yet as beginner's guide quite complete.
Vim 101: A Beginner's Guide to Vim by Joe Brockmeier.
Bit too vi-ish IMO, yet as beginner's guide quite complete.
Posted by
Ihar Filipau
at
5:10 AM
0
comments
vi Introduction. Obviously by "vi" they mean "VIM".
Posted by
Ihar Filipau
at
1:45 AM
0
comments
Vim Tutorial - with videos!
Bit too vi-compatible to my tastes. Otherwise most bases are covered.
Posted by
Ihar Filipau
at
3:02 AM
0
comments
dd if=/dev/random of=/dev/blog » Customizing vim and coloring the terminal in OpenSolaris 2009.06.
Hehehe. Somebody tries to make some use of Solaris.... Good Luck. Piece of advice though: upgrade to Linux, it's faster that way. Do not get me wrong... ... BUT WHAT THE F***?! This is year 2009 and Solaris still can't take care of colors?
P.S. BTW, Good Luck trying to use "TERM=xterm-color" though. Last I time I tried it on Solaris only to find that it is lacking something like half keyboard.
Really. Get over it, swallow your childish pride and get the Linux. It works.
Posted by
Ihar Filipau
at
3:14 PM
3
comments
LinuxPlanet - Tips - Speed-Typing in Vim With Maps and Abbreviations - Better Than a Clipboard.
Some nice tips on how to use VIM's abbreviations to insert some dynamic (not static!) text like e.g. current date.
Posted by
Ihar Filipau
at
4:49 AM
0
comments
LinuxPlanet - Tips - Turning on Unicode Support in Vim - Unicode in Vim.
Though article is more about how to input all those fancy characters.
Posted by
Ihar Filipau
at
7:02 AM
0
comments
One - at times very - annoying problem I had was that jumping to tag not very C++ friendly. Namely it doesn't consider ':' (colon) to be part of word under cursor. It finally bothered me to the point of reading documentation which promptly sent me to :help star where from I was sent to :help 'iskeyword'. In less than a minute I had a fix:au BufReadPost *.cpp set isk+=:
'isk' is shorthand for 'iskeyword' and tells VIM what symbols should be considered to be part of (key)words. 'isk' is a list (as usually comma separated) of characters/character ranges and as with any other comma-separated lists, operators '+=' and '-=' do they job as they should.
That obviously has an impact on any VIM command which works with words - '*', '#', 'w', etc. Beware.
Posted by
Ihar Filipau
at
4:10 AM
0
comments
Labels: programming, tags, vimrc
Vim made easy: how to get your favorite IDE features in Vim by Ryan Paul on ArsTechnica.
Something about plug-ins and such. Lots of screenshots with Python source code, so I couldn't look deeper.
Posted by
Ihar Filipau
at
7:27 AM
0
comments
Labels: link
Handle With Linux's my vi first steps.
I presume the guy means "vim" as he's working with Linux and Linux for past 10+ years has "vi" as a symlink to vim.
P.S. Nice trick to use :wn from a macro - to make macro to go to the next file. When macro invoked with repeat counter N, it would be applied to N first files open for editing.
Posted by
Ihar Filipau
at
5:54 AM
0
comments
Labels: link