Search the web
Sign In
New User? Sign Up
vimdev · Vim (Vi IMproved) text editor developers list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 47064 - 47093 of 55368   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
47064
Question from eBay Member -- Respond Now eBay sent this message on behalf of an eBay member via My Messages. Responses sent using email will not reach the eBay...
eBay Member k2912w
member@...
Send Email
Jun 1, 2007
7:15 am
47065
... Hmm. Well, that works. That particular approach has the side-effect of adding items to the search history (and highlighting all your uppercase letters if...
Joseph Barker
jbarker@...
Send Email
Jun 1, 2007
7:24 pm
47066
Hi, ... Did you try specifying the <expr> attribute to the map command? Something along the lines of function! MoveToCursor() return "/\\u\\|\\<\<CR>" ...
Yegappan Lakshmanan
yegappanl@...
Send Email
Jun 1, 2007
8:03 pm
47067
... The following is possible: function VisualMove() normal! gv call search('\u') " visual mode still on endfunction vmap ,w :<c-u>call VisualMove()<cr> -- ...
Andy Wokula
anwoku@...
Send Email
Jun 1, 2007
8:15 pm
47068
... That works perfectly, although I have no idea why. Can you explain? I would think that calling `normal! gv` would have no effect, since that should ...
Joseph Barker
jbarker@...
Send Email
Jun 1, 2007
10:01 pm
47069
... You could also try this: function VisualMove() call search('\u') return "" endfunction vmap ,w @=VisualMove()<cr> ... Entering Cmdline mode with ... turns...
Andy Wokula
anwoku@...
Send Email
Jun 2, 2007
4:09 pm
47070
Hi, ... According to ":help mode-switching", it is not possible to enter visual mode from Ex or command-line mode. Either the table under ":help i_esc" needs ...
Yegappan Lakshmanan
yegappanl@...
Send Email
Jun 2, 2007
5:04 pm
47071
... The following is possible: Q " enter Ex mode normal v normal eee " extend visual area visual " quit Ex mode, enter Visual mode Hmm, seems the table needs...
Andy Wokula
anwoku@...
Send Email
Jun 2, 2007
6:09 pm
47072
Hi, I submit patch that uses generic code path for mouse wheel events instead of scrollbar hack. It fixes several small problems: * <S-MouseDown>/<S-MouseUp>...
Alex Dobrynin
alex_dobrynin@...
Send Email
Jun 3, 2007
2:06 pm
47073
Nice to hear from you! ... yes, and share the fun with us too... ... for now. ( and nikolai believe even without the fuzzy stuff it would take a hell lot of...
Asiri Rathnayake
asiri.rathnayake@...
Send Email
Jun 3, 2007
2:45 pm
47074
Hello, When I compile Vim 7.1.2 under Cygwin (on Windows XP), the configure script incorrectly identifies the version of my Ruby interpreter. The output from...
Taylor Venable
taylor@...
Send Email
Jun 3, 2007
10:39 pm
47075
... What does it reply (under cygwin) to which -a ruby ls -l `which -a ruby` Best regards, Tony. -- "Give me enough medals, and I'll win any war." -- Napolean...
A.J.Mechelynck
antoine.mechelynck@...
Send Email
Jun 3, 2007
11:54 pm
47076
... I don't know anything about Ruby and not much about the inner workings of configure, but it appears that the ruby version is being checked at line 881 of...
Gary Johnson
garyjohn@...
Send Email
Jun 4, 2007
7:02 am
47077 (no author)
(no email address)
Send Email
Jun 4, 2007
8:11 am
47078
The documentation for ":help gnome-session" needs correction: ... *************** *** 1,3 **** ! *gui_x11.txt* For Vim version 7.1. Last change: 2006 Jul 12...
Christian J. Robinson
infynity@...
Send Email
Jun 4, 2007
8:55 am
47079
On Sun, 3 Jun 2007 23:59:54 -0700 ... I think the problem may be a bug in Cygwin's Ruby. When you run that command with Cygwin's Ruby you get: ruby: no such...
Taylor Venable
taylor@...
Send Email
Jun 5, 2007
2:46 am
47080
[cross-posted to vim, vim-dev, vim-announce, wikia-l] Hi all Finally I have imported all the vim tips from http://vim.org/tips to http://vim.wikia.com and set...
Sebastian Menge
sebastian.menge@...
Send Email
Jun 5, 2007
10:46 am
47081
... I am EXCITED! -- -fREW...
fREW
frioux@...
Send Email
Jun 5, 2007
6:14 pm
47082
Hi, ... if you must have ads, would it be possible to go with text-only ads? Additionally, the "Digg this story" button at the bottom is stupid ;-) Just my...
Nico Weber
nicolasweber@...
Send Email
Jun 5, 2007
7:34 pm
47083
... Great! Let's await comments for a few days, then I'll add a few links on www.vim.org to the tips wiki. That should give the wiki quite a bit more traffic....
Bram Moolenaar
Bram@...
Send Email
Jun 5, 2007
7:43 pm
47084
... The links to scripts on the tips pages don't show up correctly, they look like this: [/scripts/script.php?script_id=31 vimscript #31] Take a look at this...
Larson, David
davidlarson@...
Send Email
Jun 5, 2007
8:17 pm
47085
... You have "-rubygems" somewhere in your $RUBYOPTS environment variable. Either unset this variable before building vim, check your configuration files...
Alexey I. Froloff
raorn@...
Send Email
Jun 5, 2007
8:41 pm
47086
Sebastian, Why not utilize the "talk:" pages for the comments (see discussion tab at top of each wiki page)? Just curious. -Robert...
Robert Lee
rlee0001@...
Send Email
Jun 5, 2007
8:47 pm
47087
... Lets avoid using the vim-announce mailing list for a discussing of vim wiki and stick to vim-dev. David...
Larson, David
davidlarson@...
Send Email
Jun 5, 2007
8:50 pm
47088
I usually do search like this: $ grep Word *.* | vim -u myvimrc - $ cat myvimrc ... but when I quit :q, vim always asks me to save the file again, why is the...
Mohsin
mosh.ahmed@...
Send Email
Jun 6, 2007
3:49 am
47089
Hi Mohsin, ... It's a bug. Here is the patch. Please test it carefully, thanks very much for reporting this to me. I'll ask Bram to add it to the official ...
Edward L. Fox
edyfox@...
Send Email
Jun 6, 2007
4:57 am
47090
... Very good work Sebastian, it looks great to me. I have already come across a new tip on vim wikia that I hadn't known anything about which I thought I...
Robert Cussons
r.cussons@...
Send Email
Jun 6, 2007
7:39 am
47091
... Instead of moving the autocommands, it might be better to move the call to changed() to before the autocommands (with the "if" that checks for read_stdin)....
Bram Moolenaar
Bram@...
Send Email
Jun 6, 2007
8:49 am
47092 (no author)
(no email address)
Send Email
Jun 6, 2007
7:18 pm
47093 (no author)
(no email address)
Send Email
Jun 10, 2007
6:59 am
Messages 47064 - 47093 of 55368   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help