Tagged Questions

70
votes
3answers
2k views

Can vim highlight matching HTML tags like Notepad++?

VIM has support for matching pairs of curly brackets, parentheses, and square brackets. This is great for editing C-style languages like PHP and Javascript. But what about matching HTML tags? ...
15
votes
1answer
318 views

Hacking rails.vim to work with Padrino

I recently cloned rails.vim (vim-rails) hoping to modify it to work with Padrino projects. Currently I'm trying to get the Rcontroller command to look not only in app/controllers (perfect for rails) ...
15
votes
3answers
3k views

Recommended Vim plugins for JavaScript coding?

hi i am new in JavaScript and vim editor what is plugins is help me to write JavaScript code ? thanks and sorry about my bad English .
8
votes
1answer
60 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 ...
8
votes
1answer
140 views

Improved jumps to definition

When we're using ctags in vim and want to go to particular definition of variable or function we press ctrl + ], when we want to go back we press ctrl + T. When we want to autocomplete a name of a ...
8
votes
3answers
605 views

VimScript or VimL?

What is the correct name of the Vim scripting language? I see it being called VimScript, Vim script and even VimL. VimL is even listed on GitHub as the 10th most popular programming language! What is ...
8
votes
2answers
1k views

Embed vim settings in file

In some files I can see a commented line, usually the last, with vim settings. Does vim read these settings? If it does, are any limitations of what kind of settings man can put there?
8
votes
2answers
546 views

Vim auto-indentation: Align an array initialization which extends over multiple lines

Sometimes an array initialization in C extends over several lines, especially if the array is multidimensional. In Emacs the result of auto-indentation looks like this: int a[N][N] = {{0, 0, 6, 7, 0, ...
8
votes
2answers
1k views

vimscript: How to detect if specific file exists

I'm looking for an elegant way in vimscript to check if file exists in the current directory in a function. I came up with this but not sure if that's the most elegant solution (I'll be setting vim ...
7
votes
1answer
132 views

rails.vim and custom controllers location

I love Rails.vim but I have a problem with using it in some projects. I have two places for controllers in one of my apps: app/controllers app/controllers/v1/api Can I configure (perhaps in ...
7
votes
1answer
212 views

Vim status bar prediction/completion?

I played with some vim scripting yesterday and managed to get some over-the-status-bar prediction to whatever I'm typing at the moment, with cycling - see screenshot (gray + yellow bar). Problem ...
7
votes
2answers
259 views

tools for testing vim plugins

I'm looking for some tools for testing vim scripts. Either vim scripts that do unit/functional testing, or classes for some other library (eg Python's unittest module) that make it convenient to ...
7
votes
3answers
303 views

Vim step-by-step: How do you line up arbitrary text by arbitrary delimiter?

Background: There are a lot of great tutorials and "tricks" pages for Vim, but one thing that is very difficult is to find specific instructions on how to do some arbitrary thing that one can easily ...
6
votes
5answers
240 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 ...
6
votes
3answers
696 views

vim filters and stdout/stderr

When I use :%! to run the contents of a file through a filter and the filter fails (it returns another code than 0) and prints an error message to stderr I get my file replaced with this error ...
5
votes
1answer
63 views

How do I expand a range into a list in vimscript?

I'd like to automatically take a visually selected block of text, such as 51-100, and have it expanded into 51,52,53,...,99,100. Is there an easy way to do this in vimscript?
5
votes
2answers
88 views

Vim Scripting - call function once for all selected lines

So I have a text file like this: Item a: <total> Subitem: 10 min Subitem 2: 20 min I'd like to replace <total> with the total of 10 and 20. Right now I'm doing it with the following ...
5
votes
1answer
49 views

In vim, how do I define a function that can be called without :call?

How do I define a function so that I can call it from command-line mode without :call in front of it? Right now, I have to do this: :call TrimWhitespace() I want to define it so that I can do this: ...
5
votes
3answers
134 views

Is there a way to expand a Vim fold automatically when your put your cursor on it?

Can you have Vim expand a fold automatically when the cursor touches it?
5
votes
2answers
358 views

vimscript buffer to get output of perl script

I'm trying to edit the copy-paste buffer: I have the following command: nmap gfb :let .shellescape(getreg('0'))=1<br> that should have put the number 1 into the buffer, which is not ...
5
votes
2answers
262 views

vim word completion navigating with 'j' and 'k'

In vim, I use Ctrl-n to word complete while in insert mode. If there is more than one possible match, I get a dropdown from which I can select one of the possible matches using the arrow keys. ...
5
votes
3answers
192 views

What are some good resources for learning to develop VIM plugins?

I am learning VIM and would like to try to hack on some VIM plugins, but can't seem to find any resources for learning the scripting language. It seems like its called VIMscript, but I'm finding ...
5
votes
2answers
389 views

How can I use variables to DRY up Vim colorthemes

I would like to tidy up my Vim color scheme file, by replacing #ABCDEF colors with variables. For example, I would like to replace this: highlight String guifg=#61CE3C highlight Identifier ...
4
votes
1answer
71 views

How do I capture the output of a vim command in a register, without the newlines?

This is related to this question: ViM: How to redirect ex command output into current buffer or file? However, the problem with using :redir is that it causes 3 or 4 extra newlines in front of the ...
4
votes
2answers
144 views

internal code-completion in vim

There's a completion type that isn't listed in the vim help files (notably: insert.txt), but which I instinctively feel the need for rather often. Let's say I have the words "Awesome" and ...
4
votes
5answers
101 views

how to change first two uppercase character to lowercase character on each line in vim

I have the following text HELLO TO STACKOVERFLOW WELCOME TO STACKOVERFLOW I want the text to be like this heLLO TO STACKOVERFLOW weLCOME TO STACKOVERFLOW
4
votes
1answer
205 views

Capturing break/interrupt command

I'm trying to interrupt a for loop such as in code below, for num in buffer_number_list " Select the buffer exe 'buffer' num " Run the command that's passed as an argument exe ...
4
votes
3answers
102 views

vim custom syntax highlighting background only

I want to customize syntax highlighting in vim (gui version). There is an existing syntax file for my language. I want to add to that syntax highlighting a background colour to each line if that line ...
4
votes
3answers
106 views

How can I better page through folds in Vim?

I usually have foldclose=all set so when I scroll through code, the folds automatically open and close. but sometimes I also like to quickly page through text using <C-d> and <C-u>. The ...
4
votes
1answer
102 views

Vim: Start Regular Expression match from Beginning of Visual Selection

I'm trying to use the vim plugin, Tabular, to align some misformatted CSS code. Unfortunately, I can't quite seem to grasp how to start the match at the beginning of a visual selection in Vim. Here's ...
4
votes
2answers
98 views

Need script/function/command to surround text with other text

I'm new to scripting in Vim. I need to write a script that surrounds a piece of text with other text. For example: \surroundingtext{surrounded text} (yes it is for LaTeX). I want to either ...
4
votes
1answer
121 views

Vim: most efficient way to test for pattern at cursor?

I have a problem with matching text in Vim buffers. I have a specific form of dates in my text and often need to test whether the text at cursor matches the date pattern. Here are some examples of ...
4
votes
1answer
87 views

How do I check a binary exists in the PATH in a Vim plugin?

I'm writing a Vim plugin. I need to call a binary which should be in the PATH. But I want to display an error message if its not. Whats the best way to find out if the binary is in the PATH? I'm ...
4
votes
1answer
257 views

How to get path to the current vimscript being executed

In my vim plugin, I have two files: myplugin/plugin.vim myplugin/plugin_helpers.py I would like to import plugin_helpers from plugin.vim (using the vim python support), so I believe I first need to ...
4
votes
1answer
153 views

How do you show an animated progress bar and animated command line in VimScript?

I'm wondering how you could get the same moving progress bar you see when you run :TOhtml on a big file using VimScript. Also, when you do :vimgrep, you can see the files displayed in succession in ...
4
votes
1answer
86 views

How would you syntax-color camelcase words in Vim?

What vimscript command(s) could you use to syntax-color words in CamelCase?
4
votes
1answer
605 views

How do I enable automatic folds in Vim?

How do I enable automatic folding in Vim? set foldmethod=syntax doesn't seem to do much of anything.
4
votes
1answer
175 views

How can you get vim to wrap bulleted text with indentation?

In vim, I can type a line like this: - When in the Course of human events it becomes necessary for one people to dissolve the political bands which have connected them with another ... and vim ...
4
votes
1answer
125 views

vim: pass a char or word to your function

I know that when you define a function in vim, you can use the range keyword so that users can say: :-5,+5call MyFunction() And then your function gets a:firstline and a:lastline. What I want is ...
4
votes
3answers
417 views

Vimscript: find last open parenthese or bracket

I'd like to write a function in vimscript that finds the last open parenthese or bracket in a line. This isn't necessarily an easy problem, because it needs to be able to handle all of the following: ...
4
votes
1answer
962 views

Conditional colorscheme in .vimrc

I am using vim and MacVim. I have a 256-colour colorscheme which I like for my MacVim, but if I load it into regular vim, it obviously does not work (I get blinkies instead). I would like to be able ...
4
votes
2answers
113 views

dumping the source code for an anonymous function

original (update follows) I'm working with a lot of anonymous functions, ie functions declared as part of a dictionary, aka "methods". It's getting pretty painful to debug, because I can't tell what ...
4
votes
3answers
501 views

How do I turn on search highlighting from a vim script?

If I do either of the following two: call search("searchString") exec "/ searchString" From a script, then vim does the search but does not highlight the results, even though hlsearch. Doing the ...
4
votes
2answers
963 views

Get offset of current buffer in vim (in particular, via python scripting)

i want to get the offset of the current cursor position the current selection range in vim, beginning from the start of the file. I do this in python, so hints how to do it with vim's python ...
3
votes
1answer
89 views

Vim : sorting Todo list

Let us suppose I have a todolist, each line including the same structure of items : Do something, @priority (e.g. : @1, @2, etc…), §project (e.g. : §vacation, §family, etc…), &category (e.g.: ...
3
votes
1answer
69 views

Using inline if operator in .vimrc

I am trying to implement a toggle between absolute and variable line numbering in vim and I'd like to do as a one liner instead of writing an if function. My current code is: nnoremap <F4> :( ...
3
votes
2answers
72 views

Get position of splitted windows on a vim editor

I've been trying to find out how the get the position/coordinates of a splitt window inside a vim editor window, but no luck so far. Say for example I have this layout (0,0) (2, 0) ...
3
votes
2answers
161 views

Smart window resizing with splits in MacVim

I'm using the latest MacVim. Is there any way to have it so if I open MacVim without a file or with only one file, it sets the window width to n characters? Then if I do a vertical split it will ...
3
votes
1answer
260 views

What's the difference between omnifunc and completefunc except the invocation key mapping?

Is there any difference in functionality between these two types of complete-functions in vimscript?
3
votes
2answers
67 views

Is there a way to make use of two custom, complete functions in Vim-script?

Is there a way to achieve the following? command! -nargs=* -complete=customlist,CustomFunc1 -complete=customlist,CustomFunc2 Foo call MyFunction(<f-args>) The user will be able to ...

1 2 3 4 5 6