WHat can influence Vim's behaviour? a) env vars b) command line arguments c) environment ($VIMRUNTIME ~/.vim etc) great: You can reproduce the problem easily....
129324
Charles Campbell
Charles.E.Campbell@...
Mar 1, 2012 2:40 pm
... I, too, had updated cygwin to the newest version, although the vim source was at 7.3.451. I'm not at the computer with windows at the moment, so I can't...
129325
Ben Fritz
fritzophrenic@...
Mar 1, 2012 4:02 pm
... This code works fine for me, if I remove the trailing ';' from the keyword definitions. Vim commands just go to the end of the line, you don't need to (and...
129326
skrite
shawn@...
Mar 1, 2012 4:40 pm
Hey all, i do a lot of work in python and a lot in ruby, html, and javascript. What i would like is for all my python files to behave with 1 tab = 4 spaces,...
129327
Taylor Hedberg
tmhedberg@...
Mar 1, 2012 4:44 pm
... Write a script that sets the options as you want them for a particular filetype, then save it as ~/.vim/ftplugin/python.vim, ~/.vim/ftplugin/ruby.vim, etc....
129328
shawn wilson
ag4ve.us@...
Mar 1, 2012 4:52 pm
quite often, i want to write a test with a static file (html in this instance). and i'd like to search and replace with random data. how do i do this? ...
129329
Paul
google01239@...
Mar 1, 2012 4:56 pm
... Put each setting that you want into its respective file in ~/.vim/ftplugin/. Eg., ~/.vim/ftplugin/html.vim. Convert the tabs to spaces with :retab. You can...
129330
thinca
thinca@...
Mar 1, 2012 5:00 pm
Try this. %s@@\=system('cat /dev/urandom | strings | tr -d "\n" | head -c 15')@gc -- thinca <thinca@...> -- You received this message from the "vim_use"...
129331
Chris Sutcliffe
ir0nh34d@...
Mar 1, 2012 5:39 pm
... Dumb question, are you trying to build a native Windows vim or are you trying to create a Cygwin vim? If you are trying to create a native Windows vim,...
129332
Gary Johnson
garyjohn@...
Mar 1, 2012 6:14 pm
... If you do that, any settings you make may be overwritten by settings made in the standard ftplugins in $VIMRUNTIME/ftplugin. A better place for your...
129333
Shawn Bright
shawn@...
Mar 1, 2012 6:33 pm
thanks very much on this. will give it a shot sk ... -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text...
129334
Tarlika Elisabeth Sch...
vim@...
Mar 1, 2012 11:55 pm
I have created a syntax file for a markup language. Below I have given examples of inline and multi-line code blocks. I would like to highlight the text...
129335
pansz
pan.shizhu@...
Mar 2, 2012 12:39 am
... Make_cyg.mak is specially designed to build native windows gvim.exe, so he is obviously trying to build native windows gvim. -- You received this message...
129336
Chris Sutcliffe
ir0nh34d@...
Mar 2, 2012 1:15 am
... That being the case then the appropriate cross compiler (i686-pc-mingw32-*) should be used. Chris -- Chris Sutcliffe http://emergedesktop.org ...
129337
Tim Chase
vim@...
Mar 2, 2012 1:21 am
... This is strange. I performed the following: 1) put the following 2 lines in temp/c.vim """ iab aa American Airlines inoremap <cr> <c-]><c-g>u<cr> """ 2)...
129338
Ben Fritz
fritzophrenic@...
Mar 2, 2012 1:29 am
On Thursday, March 1, 2012 1:41:03 PM UTC-6, Tarlika Elisabeth Schmitz ... xyzCodeMark prevents the xyzCode end pattern from matching. This allows nesting of...
129339
howardb21
howardb21@...
Mar 2, 2012 1:38 am
I followed your lead below, and got somewhere. Typed, `have' and got the following message: Dictionary completion (^K^N^P) match 1 of 6 but no visual menu of...
129340
Gary Johnson
garyjohn@...
Mar 2, 2012 3:06 am
... I don't know. I compared the features included in yours with those included in mine. I didn't see any differences that would affect pop-up menus. I looked...
129341
Sergey Khorev
sergey.khorev@...
Mar 2, 2012 5:19 am
Hi, Google Code Search was retired in January so I think it should be removed from http://www.vim.org/search.php as well -- You received this message from the...
129342
howardb21
howardb21@...
Mar 2, 2012 7:15 am
... Yes, I know about that. I set completeopt=menu,menuone Intereestingly t_Co? gives an empty value, although my samsung monitor has plenty of colors....
129343
Andre Majorel
aym-miv@...
Mar 2, 2012 7:53 am
Hello all. Is there a way to download a script from vim.org without losing the timestamp ? So that after downloading a script, the mtime of the local file...
129344
Tony Mechelynck
antoine.mechelynck@...
Mar 2, 2012 8:00 am
... Keep all runtime files (like others said). If your system runs in console mode only, then there probably is no X server. Vim would then start faster with...
129345
Marc Weber
marco-oweber@...
Mar 2, 2012 8:35 am
I forgot to say that these engines where listed a "alternatives" because they don't strip symbols while indexing.. I haven't tested them symbol search ...
129346
Marc Weber
marco-oweber@...
Mar 2, 2012 8:37 am
I commented that piece of code. Thus consider it being fixed. Well - now its even more urgent to have our own code search, do you agree? .. :( Marc Weber -- ...
129347
Tarlika Elisabeth Sch...
vim@...
Mar 2, 2012 3:16 pm
On Thu, 1 Mar 2012 17:28:33 -0800 (PST) ... Ben, this works a treat for the examples I posted last night - many thanks. However, I just realized the code...
129348
Gary Johnson
garyjohn@...
Mar 2, 2012 4:14 pm
... That's the problem then. With t_Co empty, Vim thinks that your terminal doesn't support colors and therefore doesn't display that menu. ... You should set...
129349
Benjamin R. Haskell
vim@...
Mar 2, 2012 4:34 pm
... Vim needs a way to visually indicate that the menu is a menu, and it doesn't do so by drawing a box (I assume that's due to historically-limited screen...
129350
Christian Brabandt
cblists@...
Mar 2, 2012 4:45 pm
Hi Gary! ... I think all recent xterms are compiled with support for 256 colors. For that to work, it should be sufficient to set TERM=xterm-256color. Even ...
129351
Christian Brabandt
cblists@...
Mar 2, 2012 5:02 pm
Hi Tim! ... I think, this is because of the 'cpo' option including the '<' char (see ... sequence. If you set cpo-=< cpo-=u it should work however. ... This...
129352
Ben Fritz
fritzophrenic@...
Mar 2, 2012 5:25 pm
On Mar 2, 8:56 am, Tarlika Elisabeth Schmitz ... Good to know, glad it helped. ... Good, you have this already. ... For this, I think you'll need to...