Hi, I've searched Vim help and Google as well as done lots of experimentation with no luck. Basically, what I'm trying to do is put something in my .vimrc file...
Hi, Is there any way VimScript HIGHLIGHT statement could be teased not to clear the screen? I have written a script that calls HIGHLIGHT many times, but each...
... I think you're looking for list literals: for db in ['db1', 'db2', 'db3'] exec 'source ' . db . '.dict39; endfor -tim -- You received this message from the...
Hi, Does anyone have a good automation such that it provides a drop-down of members of a structure when I type struct X { int a,b,c; }; X x; With the...
Is it possible to remap CTRL-I to Escape in insert mode without remapping <Tab> at the same time? I normally use CTRL+[ because the Escape key on my...
Hello everybody, In a vimscript file, parentheses across multi lines is highlighted as errors, which is shown in the attachment. Is there any way to fix this? ...
I use DropBox. I edit a file on computer "A" and FORGET to exit vim. Now on computer "B", the .swp file prevents me from editing. I know I can ignore and just...
I downloaded dbext_1200. By installing the docs with helptags I'm getting: E154: Duplicate tag "/MyProjectDir/" in file C:\home92;Romer92;vimfiles92;doc/dbext.txt ...
... The "unofficial reference" for Vim on Windows is the "Vim without Cream" distribution, downloadable from http://sourceforge.net/projects/cream/files/...
I'm using gvim 7.3.107 on Win XP with vimball v32c ... autoload\dbext.vim autoload\dbext_dbi.vim doc\dbext.txt doc\dbext_gpl.dat plugin\dbext.vim ... and do...
From looking at :list, it seems like it's basically supposed to print the line as it would show with 'list' turned on. However, I have a few ... additionally...
Hi all, I have a text file with more than 40,000,000 lines. It takes VIM very long time to load. Is there anything I can do to make it quicker? -- You received...
I really like this http://ilovenihon.com/info.html Hope u too! -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below...
What is the proper way to yank a word or a selection from a vim script? Right now I'm using if !bSelection normal! yaw else normal! gvy endif but I have some...
... Nice list I didn't know before. ... Thanks for the explanation. It's not about remapping. I'm writing a vimscript in lua. In a function I need the position...
Hello. Is there a way to substitute within a highlight group? I have file, with detected filetype and applied syntax. Syntax gives the group. And I want to...
There's so many questions and feature requests about use mouse to scroll screen lines, but until now, it's still impossible. Before starting this thread, I...
Hello, I am wondering if there is a way, using some (range)s/// command, to take 0 : blah blah blah 1 : blah blah blah 2 : blah blah blah . . . 15 : blah blah...
Hi, I have some basic questions about how things work in vim. Is it true that every key command executes a function? Say the key command »%« performed on a...
Hi, this is a very basic question ... I am currently learning vim scripting. With getline(.) I can get the contents of a line of a buffer. But: i How can I...
I'm working on some old legacy code with "methods" which are thousands of lines long. When jumping through a file, it's not always clear to me which method I'm...
Hi, I want to process a text with script. The text contains of two regions: The first region contains of lines beginning with keyword_a and the second one...
... it no longer load all file into buffer list. it makes :vim command faster, but now I can not use a single bufdo command to process all these file. how to...
Hi, all, I have a text containing both "\" and '\92;". Now I want to replace all the "\" to "\92;", but leave those have already been "\92;" alone. How can I achieve...
I have a file encoded as cp1252. I have my encoding set to utf-8, and my fileencodings set up such that when this file is read in, it gets an fenc of cp1252...