Contents contributed and discussions participated by reckoner reckoner
Vim reStructured Text - 0 views
Vim documentation: eval - 0 views
-
:au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
Vim tips and help - Amidst a tangled web - 0 views
-
View your search history: / Ctrl-F (:q to exit)
-
Restore the cursor to the file position in previous editing session (vim.org tip) Put this line in .vimrc: au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif
shortcut for ex ranges - vim_use | Google Groups - 0 views
-
> Hi, > After reading the thread on asynchronous processes I was just looking > at the help for the ! command which I rarely use, and after playing > with it I realized that it translates a motion from normal mode into a > range for an ex command, i.e. doing !2j gives you an ex command line > of :.,+2! to start your filter with. This made me wonder: Is there a > way to do this without the filter? In other words, instead of having > to type :.,+2s I could get there with a 2j combined with something. I > realize I can do it with the ! itself by just backspacing over the ! > at the end of the ex command, but is there a more 'official' way to do > this? No, there isn't. But in your example, you know the number of lines you want to get in your range, so you can type 3: to get :.,.+2 In general: !2j has the form {operator}{motion} :h operator You can create a custom operator (and name it e.g. "g:") with :h g@ Once it has been done here (from Jan 2008, see the whole discussion) http://groups.google.com/group/vim_dev/msg/c6fb56645c188244 The details are somewhat tricky (if this reads better than ugly ...).
Vim for TextMate fans - 0 views
PySmell v0.6 released : orestis.gr - 0 views
Applying substitutes to a visual block - Vim Tips Wiki - a Wikia wiki - 0 views
-
Applying substitutes to a visual block
Daily Vim: Vim to Postscript - 0 views
-
Here's a little Vim trick that might be of interest. If you're on a non-Windows machine, you can make the Vim hardcopy command print to a postscript file instead of a real printer. Try issue the following::hardcopy > file.ps
items.sjbach.com » Writing a Vim plugin - 0 views
DrChip's Alignment Tool for Vim - 0 views
Rutherfurd.net: Vimposter Plugin - 0 views
Vim Python development | Peter's Blog - 1 views
-
mdb/
« First
‹ Previous
101 - 120 of 136
Next ›
Showing 20▼ items per page