0
votes
1answer
40 views

how to highlight quickfix result keyword?

Normally, when use vim with cscope, it display the search results in quickfix window at the bottom. when type :cn in the commandline, it will jump to the beginning of line which contains the keyword. ...
0
votes
0answers
57 views

How to emulate :autocmd VisualLeave * or :autocmd VisualEnter * in vim?

As you know, there are (sadly) no VisualLeave or VisualEnter autocmds in vim. Is there a way to emulate it? (Sidenote: Having such events would add even more power to vim)
0
votes
2answers
34 views

how to insert the filename before inserting the file into another file in vim

Is there a way we can insert the filename before we insert the file content into another file i know how to insert a file into another -- :r But how to insert the filename which we are inserting ...
0
votes
1answer
32 views

Vim Syntax Modify

I am trying to color different levels of parentheses differently in vim -like rainbow parentheses. But I couldn't do it without breaking, for example, css highlighting. Problem is that: syntax of ...
1
vote
1answer
59 views

How to add custom messages to Vim quicklist?

I have a file which contains code review comments by file and line numbers. I'm writing a Vim plugin which uses Vim quicklist to display review comments when i open a file and navigate to the line ...
2
votes
1answer
50 views

Vim script: check if the current word is/isn't a C/C++ keyword

I'm working on a small vim plugin which should highlight current word occurrences after cursor idle. I have a highlight part, and what I need is to check if the current word is not a C/C++ keyword.
0
votes
1answer
68 views

Vim Autocorrect when wrong spelling is typed

How do you make vim auto correct a spelling by replacing it with the first suggestion automatically immediately after I finish typing that word? I tried :imap <Space> ...
0
votes
1answer
53 views

VimL: Get extra KB from function that outputs file size

Right now I'm creating a plugin of sorts for Vim, it's meant to simply have all kinds of utility functions to put in your statusline, here's the link: https://github.com/Greduan/vim-usefulstatusline ...
0
votes
1answer
59 views

VimL: How to find out if I have CAPS lock on/off

Right now I'm creating a plugin of sorts for Vim, it's meant to simply have all kinds of utility functions to put in your statusline, here's the link: https://github.com/Greduan/vim-usefulstatusline ...
1
vote
3answers
151 views

Easiest way to test vim regex?

I'm trying to write a vim syntax file, one problem I'm dealing with is vim's regex syntax is different from most other languages(I think the one called "perl compatible regex", Python, JavaScript etc. ...
0
votes
2answers
56 views

how to map VimroomToggle to several actions

I write blog articles in vim, markdown format. I want to use the awesome "Vimroom" plugin for vim. But the plugin doesn't do several things: It does not unset the line numbers it does not unset the ...
4
votes
2answers
67 views

How to find out a certain color value the current colorscheme is using for certain stuff?

I need this in order to finish a plugin I'm making in order to change the colors of the statusline depending on the mode. However I've run across an obvious problem, how would I know what theme the ...
0
votes
1answer
111 views

mapping enter key to newline and tab in vim

Whenever I press the enter key, indicating an end of paragraph, vim should automatically insert another new line, and insert a tab space in the next line. All this is to denote that I am ready to ...
0
votes
1answer
62 views

VimL: Function to cancel loading of plugin

Maybe the question title is not too specific. So let me explain: This is for this GitHub fork, for the numbertoggle Vim plugin. Please check the structure of my fork, to understand what I mean. What ...
2
votes
4answers
230 views

Vim like Perl IDE [closed]

I use Vim and vim-script "perl-support" for Perl programming. But in the perlsupport like Perl Vim IDE I couldn't find a feature for show all functions and variables in my script. Are there any other ...
2
votes
1answer
176 views

VimL: Checking if function exists

right now I'm cleaning up my .vimrc file to make sure it's compatible on most systems. In my statusline I use a function that another plugin sets, the GitBranchInfoString() function introduced by ...
1
vote
2answers
87 views

VimL: How to know in which buffer Vim is, by buffer name

I'm currently modifying a plugin that I like, to suit my needs. I have come across the problem that I need to know in what buffer I'm in, within VimL's limitations. I need to be able to refer to the ...
7
votes
2answers
145 views

What is the reason to parenthesize <Plug> map names?

Many plugins make their public mapping interface accessible through <Plug> maps. Users can then use these maps as hooks for their own mappings, e.g. :nmap <Leader>fu ...
1
vote
1answer
66 views

VimL: Make function called through key receive input from Vim command line

So, this may not be a clear question because of the title. But here's the actual explanation: I have this custom function, I want this function to be able to be called from the command line, this is ...
1
vote
4answers
163 views

Plugin name for showing indentation guide in gVim

Anybody, any idea?? which plugin is showing the indentation guide in the image below. Downloaded from http://leetless.de/images/vim/pyte.png .png Thanks
2
votes
1answer
177 views

How can I do quick searching in NERDTree?

Is it possible to do searching in NERDTree window by the filenames and file content?
3
votes
1answer
370 views

Is better way to zoom windows in Vim than ZoomWin?

I used to use ZoomWin: https://github.com/vim-scripts/ZoomWin for toggle between one and multiple windows in Vim. But this plugin has one big issue. When I`m trying to restore multiple ...
1
vote
1answer
77 views

How to auto resize current split in Vim?

Is there a plugin or function which auto resize current split to have exactly 80 columns? And allow trigger that feature.
0
votes
2answers
95 views

vim: how to run a command on a specific window on startup

I'm on gvim 7.3 on windows. I am using the Tail Bundle plugin, but in order to overcome a limitation on windows, I need to run some command on startup...BUT ONLY on the window/buffer that the plugin ...
0
votes
1answer
120 views

yankstack newer yank not cycling

I am using yankstack (last from github) on gvim7.3 on windows, I have these mappings let g:yankstack_map_keys = 0 nmap <A-p> <Plug>yankstack_substitute_older_paste nmap <A-[> ...
4
votes
1answer
134 views

Vim plugin - custom auto-complete of params in command-mode

I'm writing my first vim plugin (viml + python). One command that the plugin has is "GetStepCommand()" and it basically fetches data from a remote data source, I massage the data a bit and copies it ...
-1
votes
2answers
170 views

why i failed to use omni auto complete when i edit source code?

vim a.py input: impo then press: Cx Co omin autocomplete just failed with the following message, why? Error: Required vim compiled with +python ...
0
votes
1answer
38 views

can i change VIMRUNTIM if i want to move/usr/share/vim/vim71 to other path?

if yes, how to change such variable? should i modify vimrc? but vimrc is in $VIMTIME, if i changed it, how vim find it? i maybe have lots copies of VIMRUNTIME, and i hope that i can switch to ...
0
votes
2answers
2k views

Vundle for VIM is not working on Ubuntu

I installed Vundle via the instructions given at this blog http://www.charlietanksley.net/philtex/sane-vim-plugin-management/ but when trying to run :BundleInstall I get a VIM error E492: Not an ...
4
votes
2answers
228 views

vim indent: align function arguments

The default alignment in vim (using "=") aligns my code as: void my_loooong_function (int arg1, int arg2, int arg3 ) However, I wish to align with all arguments starting at ...
0
votes
1answer
50 views

gvim chdir on startup when a folder is dropped

I can open a gvim session and drag&drop a folder while holding the shift key to change pwd to the dropped folder. This works fine but I was wondering if it's possible to do the same without first ...
2
votes
1answer
133 views

Vim: toggle comments while keeping indentation?

Current I'm using the EnhancedCommentify plugin for toggling comments, in particular those two commands map <M-c> <plug>Comment map <M-d> <plug>DeComment But the problem is, ...
3
votes
3answers
212 views

Is it possible to display grid in vim?

I am using DrawIt plugin in Vim 7 to draw some ascii diagrams. This might be too much, but still - Is there any plugin which can display a grid in background, to make the drawing easier?
5
votes
1answer
142 views

how to debug python function which is part of vim plugin?

The python invocation is defined in some of my .vim files. :breakadd file linenumber xx.vim doesn't seem to work. When I press a key that triggers the invocation of certain python functions, it ...
2
votes
2answers
1k views

How to remove a segment in vim Powerline?

I'm using vim Powerline, it comes by default with quite a few segments in the powerline. More than I want. I'd like to remove several of the default ones. Specifically, the one that tells me my git ...
2
votes
1answer
218 views

How to install Gist plugin for Vim?

I want install Gist plugin for Vim. I have tried the following: Download the file gist-vim.zip. Extract ZIP archive and copy plugin/gist.vim to .vim/plugin/gist.vim. But running :Gist in Vim ...
11
votes
1answer
285 views

Calling a C++ library function in vimscript

Is there a way to call a C++ shared library function from within a vim plugin written in vimscript? Say there is a hello_world.so that has a function hello_world(). I want to call this function ...
6
votes
5answers
415 views

Favourite places in vim

Is there a command in vim that can bookmark a place (path to the file, line number in that file), so that I can go to that place easily later? It would be similar as NERDTree :Bookmark command. You ...
1
vote
1answer
334 views

Vim preview css color in comments

Im using Skammer's plugin to preview color in css files using Vim. But it does not preview colors in comments. How can I enable this?
7
votes
2answers
3k views

vim: Open tag in new tab

Is there a plugin or script to open ctags entries in a new tab? I'd like to put my cursor over a function, press ctrl+] and have the entry open in another tab. I'd also like if I visually select an ...