Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vimdev · Vim (Vi IMproved) text editor developers list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 44662 - 44691 of 69987   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
44662 A.J.Mechelynck
antoine.mechelynck@... Send Email
Aug 28, 2006
9:33 pm
... There is a parallel. between 'bomb' at the beginning and 'eol' at the end, and between Unicode (i.e. the Vim expression I gave above, covering both 'enc'...
44663 Brad Beveridge
brad.beveridge@... Send Email
Aug 28, 2006
11:33 pm
Once again, I only replied to Bram. Sorry. ... I would like to let the callback code do anything really - and we currently do have code that requests switches...
44664 Brad Beveridge
brad.beveridge@... Send Email
Aug 28, 2006
11:52 pm
... Actually, it is just the opposite - the screen looks fine UNTIL I press CTRL-L :) ... I guess that is fair enough. ... <snip code> ... For right now I'm...
44665 Martin Krischik
krischik@... Send Email
Aug 29, 2006
6:29 am
Hello, When gvim is started in gui mode but cannot connect to the X-Server it falls back to terminal mode. I would which that this feature could be disabled as...
44666 A.J.Mechelynck
antoine.mechelynck@... Send Email
Aug 29, 2006
6:44 am
... what happens if you place the following (untested) near the top of your vimrc? if has("gui_running") au VimEnter * \ if ! has("gui_running") \ | echoerr...
44667 Ilya
ilya@... Send Email
Aug 29, 2006
7:28 am
... Should not you have "= {0, 0}" here? Second element never get initialized but it could be accessed by ml_append_string....
44668 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
9:42 am
... There appears to be no way to do something in this situation. How about adding a GUIFailed event? Then you can do: au GUIFailed * qall GUIFailed would be...
44669 Brad Beveridge
brad.beveridge@... Send Email
Aug 29, 2006
2:27 pm
... That might be more clear perhaps, but when you initialize an array like that in C, the last element is propagated for the whole array. Cheers Brad...
44670 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
2:35 pm
Patch 7.0.067 Problem: Undo doesn't always work properly when using "scim" input method. Undo is split up when using preediting. Solution: Reset...
44671 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
2:53 pm
Patch 7.0.069 Problem: Setting 'guitablabel&#39; to %!expand(\%) causes Vim to free an invalid pointer. (Kim Schulz) Solution: Don't try freeing a constant...
44672 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
2:56 pm
Patch 7.0.068 Problem: When 'ignorecase&#39; is set and using Insert mode completion, typing characters to change the list of matches, case is not ignored....
44673 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
3:28 pm
Patch 7.0.070 Problem: Compiler warnings for shadowed variables and uninitialized variables. Solution: Rename variables such as "index", "msg" and "dup"....
44674 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
3:59 pm
Patch 7.0.071 Problem: Using an empty search pattern may cause a crash. Solution: Avoid using a NULL pointer. Files: src/search.c ... *************** ...
44675 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
4:35 pm
Patch 7.0.072 Problem: When starting the GUI fails there is no way to adjust settings or do something else. Solution: Add the GUIFailed autocommand event....
44676 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
4:36 pm
Patch 7.0.073 Problem: Insert mode completion: Typing <CR> sometimes selects the original text instead of keeping what was typed. (Justin Constantino) ...
44677 Benji Fisher
benji@... Send Email
Aug 29, 2006
6:51 pm
A quick look at netrw.vba.gz (searching for "swf") suggests that this may be the problem: fun! netrw#NetBrowseX(fname,remote) [snip] if a:remote == 1 set...
44678 Martin Krischik
krischik@... Send Email
Aug 29, 2006
6:53 pm
... That is even cooler then my idea of having a setting as it could be used for more then just qall. I am thinking of others here as qall is all I could do to...
44679 Benji Fisher
benji@... Send Email
Aug 29, 2006
7:11 pm
... I believe that Bram does not use any version of TeX himself. I maintain the plaintex and latex ftplugins, and I suggested the current detection scheme...
44680 Stefano Zacchiroli
zack@... Send Email
Aug 29, 2006
7:18 pm
... Hi Benji, thanks for your feedback. In my mail I was more talking as the maintainer of the vim package (and of the vim-latexsuite add-on), than as a vim...
44681 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
7:29 pm
Patch 7.0.074 (extra) Problem: Win32: tooltips were not converted from 'encoding&#39; to Unicode. Solution: Set the tooltip to use Unicode and do the...
44682 Charles E Campbell Jr
drchip@... Send Email
Aug 29, 2006
7:33 pm
... Thanks, Benji F! I've uploaded a netrw v103i with the latest fixes to my website: http://mysite.verizon.net/astronaut/vim/index.html#VimFuncs , see ...
44683 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
8:06 pm
Patch 7.0.075 Problem: winsaveview() did not store the actual value of the desired cursor column. This could move the cursor in the matchparen plugin. ...
44684 Bram Moolenaar
Bram@... Send Email
Aug 29, 2006
8:35 pm
Patch 7.0.076 (after 7.0.010) Problem: Automatic downloading of spell files only works for ftp. Solution: Don't add login and password for non-ftp URLs....
44685 Nikolai Weibull
now@... Send Email
Aug 30, 2006
10:00 am
... What C compiler are you using? The last element is /not/ propagated in C. The rest of the array will be initialized to zero, which is the default for...
44686 Chris Littell
chris.littell@... Send Email
Aug 30, 2006
2:27 pm
... In C89 this is true. In C99, you can initialize values out of order and by index range, and the final value in an array initializer is propogated to the...
44687 Benji Fisher
benji@... Send Email
Aug 30, 2006
2:35 pm
... Twice recently, sorbs has bounced my mails to the list because some server between my ISP and the vim-dev list is on its blacklist. Do you have any plans...
44688 Benji Fisher
benji@... Send Email
Aug 30, 2006
2:35 pm
... If you maintain a vim package (for Debian, guessing from your sig?), then you can always define g:tex_flavor in a system vimrc if you want. BTW, the...
44689 James Vega
jamessan@... Send Email
Aug 30, 2006
2:36 pm
... Quoting an example from this document: int a[6] = { [1] = v1, v2, [4] = v4 }; is equivalent to int a[6] = { 0, v1, v2, 0, v4, 0 }; Which behaves as Nikolai...
44690 Nikolai Weibull
now@... Send Email
Aug 30, 2006
2:38 pm
... In C99 you can initialize values "out of order", yes, but you can't do it with ranges. Ranges are a GNU C extension. The propagation neither happens in...
44691 Chris Littell
chris.littell@... Send Email
Aug 30, 2006
3:48 pm
... Wow, I reread it and you are correct. I'm not sure why I held that assumption... Also thanks for the examples. ... Chris...
Messages 44662 - 44691 of 69987   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