Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim · Vim (Vi IMproved) text editor users list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 114866 - 114895 of 137733   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
114866 Tom Link
micathom@... Send Email
Jun 2, 2010
4:37 am
... You might want to delete the lines in reverse order, i.e. from the bottom to the top. I also wonder if you could make use of the :g command. Regards, Tom ...
114867 Christian Brabandt
cblists@... Send Email
Jun 2, 2010
8:14 am
... Yes. I can't see the progressbar otherwise. It is not updating for me. So I suggest, enabling it again. regards, Christian. -- You received this message...
114868 Andrei Popescu
andreimpopescu@... Send Email
Jun 2, 2010
8:38 am
... Tried that, but couldn't find the right incantation, this is my first try at vimscript ;) ... Thanks a lot, :global is perfect! I'm hitting another issue...
114869 Andrei Popescu
andreimpopescu@... Send Email
Jun 2, 2010
8:43 am
[sorry for replying to myself] ... Much simpler: execute ':'&#39;<,&#39;'>s/,\s*fuzzy//e&#39; but I'm still curious why the :catch doesn't work... Regards, Andrei -- ...
114870 Pablo Giménez
pablogipi@... Send Email
Jun 2, 2010
9:43 am
2010/6/2 Stahlman Family <brettstahlman@...> ... Mmmm I am also using gnome-terminal and I have tried with both Linux console and Xterm Built-in...
114871 Pablo Giménez
pablogipi@... Send Email
Jun 2, 2010
10:39 am
Hi all, I am trying to pass some of my keymaps to use the <Plug> syntax. But I am having some problems when doing it in insert mode maps. I have the next maps...
114872 Pablo Giménez
pablogipi@... Send Email
Jun 2, 2010
10:59 am
Hi vims. when writing dov files is very common to use this format: 2.1 User Manual *user-manual* In this example the begining of the line is in the first...
114873 Jürgen Krämer
jottkaerr@... Send Email
Jun 2, 2010
11:31 am
Hi, ... (this is on line). I assumed the line always ends with a tag between two stars, so the first part ^\s*\(.\{-\}\)\s&#92;+\(\*.*\*\)\s*$ matches the left...
114874 Stahlman Family
brettstahlman@... Send Email
Jun 2, 2010
12:42 pm
... Hmmm... That's very strange. Are you sure that the `hi Ignore ctermfg=black&#39; command is never executed? I'm wondering whether it's possible that something...
114875 Jürgen Krämer
jottkaerr@... Send Email
Jun 2, 2010
1:12 pm
Hi, ... yes, you are right. I had first tested this with a temporary variable that held the result of "&tw ? &tw : &wm ? winwidth(0) - &wm : winwidth(0)" and...
114876 Christian Brabandt
cblists@... Send Email
Jun 2, 2010
1:20 pm
... Shouldn't that be something like that \=submatch(1) . repeat(' ', (&tw ? &tw : &wm ? winwidth(0) - &wm : winwidth(0)) - len(submatch(1)) -...
114877 Stahlman Family
brettstahlman@... Send Email
Jun 2, 2010
1:22 pm
Stahlman Family wrote: ... Ah... I didn't have TERM set to rxvt-unicode. If you're using urxvt and TERM=rxvt-unicode when Vim starts up, italic is supported. ...
114878 Ben Fritz
fritzophrenic@... Send Email
Jun 2, 2010
1:43 pm
... Interesting. Is this true, even with the progress bar on the top window as in the latest version? If it is on the bottom, the screen clears again for a...
114879 David Fishburn
dfishburn.vim@... Send Email
Jun 2, 2010
1:51 pm
... I wrapped that into a command: command! FullJustifyHelpLine ... &tw : &wm ? winwidth(0) - &wm : winwidth(0)) - len(submatch(1)) - len(submatch(2))) ....
114880 Christian Brabandt
cblists@... Send Email
Jun 2, 2010
2:06 pm
... I have a different suggestion, if I may ;) ... ((&tw?&tw:&wm?winwidth(0)-&wm:winwidth(0)) - len(split(submatch(1).submatch(2),'&#92;zs'))), ' ', submatch(2))/ ...
114881 Ben Fritz
fritzophrenic@... Send Email
Jun 2, 2010
2:07 pm
... This got me thinking...so tried the following: gvim -N -u NONE -i NONE filetype indent plugin on syntax on ... I do not see the progress bars! The status...
114882 David Fishburn
dfishburn.vim@... Send Email
Jun 2, 2010
2:10 pm
... ... I have a plugin (WhatsMissing) which flips repeatedly back and forth between different buffers. To address my issues with slow performance I changed...
114883 rewar
way2quik748@... Send Email
Jun 2, 2010
2:55 pm
Hi, I have looked around for a way to do this but just cant seem to find it. Basically, I have very large documents where I want to often search for a few...
114884 rewar
way2quik748@... Send Email
Jun 2, 2010
3:00 pm
Hi, I have looked around for a way to do this but just cant seem to find it. Basically, I have very large documents where I want to often search for a few...
114885 Christian Brabandt
cblists@... Send Email
Jun 2, 2010
3:01 pm
... Try this: /^\(.*cats.*\)&#92;&\(.*dogs.*\)$ This finds any line which contains cats and dogs in any order. ... There are probably several editors, that support...
114886 Pablo Giménez
pablogipi@... Send Email
Jun 2, 2010
3:48 pm
Thanks guys works like a charms. I am using Christian's version. I prefer the second name: JustifyHelpHeader 2010/6/2 Christian Brabandt <cblists@...> ...
114887 Benjamin Fritz
fritzophrenic@... Send Email
Jun 2, 2010
3:53 pm
... Found it. I have the following in my .vimrc: " Highlight trailing whitespace, unless it is being entered now autocmd WinEnter,VimEnter * \ if...
114888 arsenalka
arsenalka@... Send Email
Jun 2, 2010
4:12 pm
how can I match begin-end words or highlight region between begin-end block? -- You received this message from the "vim_use" maillist. Do not top-post! Type...
114889 rewar
way2quik748@... Send Email
Jun 2, 2010
4:15 pm
thanks for the prompt reply! i really appreciate it. it worked perfectly, however it didnt require the "$" sign? also, how would u do it so that its not case...
114890 Greg Klein
GKlein@... Send Email
Jun 2, 2010
4:22 pm
... Yes, and I think that this pattern could be simplified to /.*cats\&.*dogs See similar example given by :help /\& Greg -- You received this message from the...
114891 Christian Brabandt
cblists@... Send Email
Jun 2, 2010
4:47 pm
Hi arsenalka! ... There was a similar thread a couple of days ago. See ...
114892 Pablo Giménez
pablogipi@... Send Email
Jun 2, 2010
4:48 pm
2010/6/2 Stahlman Family <brettstahlman@...> ... I have changed the autocommand to: augroup colorStarted if !has("gui_running") autocmd ColorScheme *...
114893 Christian Brabandt
cblists@... Send Email
Jun 2, 2010
4:53 pm
Hi rewar! ... Yes that is true. $ means line end. Since there was a .* beofre it, it will automatically match until the end of the line. ... Add \c in the...
114894 Christian Brabandt
cblists@... Send Email
Jun 2, 2010
4:56 pm
Hi Greg! ... True. But my highlighting looks prettier ;) regards, Christian -- Seien wir mal ehrlich, Das Leben ist immer lebensgefährlich. -- Erich Kästner ...
114895 Brett Stahlman
brettstahlman@... Send Email
Jun 2, 2010
6:00 pm
On Jun 2, 11:46 am, Pablo Giménez <pablog...@...> wrote: ... Pablo, I believe the background color for the words with formatting is a result of using...
Messages 114866 - 114895 of 137733   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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