73
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?
...
30
votes
1answer
518 views
+350
Highlight arguments in function body in vim
A little something that could be borrowed from IDEs. So the idea would be to highlight function arguments (and maybe scoped variable names) inside function bodies. This is the default behaviour for ...
17
votes
4answers
4k views
Recommended Vim plugins for JavaScript coding?
I'm new to JS & Vim. Which plugins would help me to write Javascript code?
15
votes
1answer
327 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) ...
9
votes
3answers
719 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 ...
9
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 ...
8
votes
2answers
158 views
Preventing repeated use of hjkl movement keys in vim
Since I frequently don't use the excellent motions and text objects that vim provides, (and since "Holding down 'j' is a vim anti-pattern,") I'd like vim to assist me in training to use these instead ...
8
votes
1answer
69 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
150 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
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
569 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, ...
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
259 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
270 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
307 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
256 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
716 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
2answers
63 views
How to use vim variables in an external filter command in visual mode?
I'm trying to make a code pretty printer filter (e.g. perltidy) accept arbitrary options depending on vim variables. My goal is to pass project specific options to an external command used as a filter ...
5
votes
1answer
68 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
96 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
80 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 ...
5
votes
1answer
50 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
142 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
373 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
267 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
194 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
404 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
68 views
How can I automatically evaluate a script and put the results into an existing window after saving in Vim?
My ideal scenario would be to have Vim split into two windows - first containing the script (python) that I am currently working on and the other showing the result of evaluating that script. This is ...
4
votes
2answers
155 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
109 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
211 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
110 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
108 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
109 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
100 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
124 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
2answers
237 views
How can I reuse the same Vim window/buffer for command output, like the :help window?
Though I'm no Vim expert, I've been scratching an itch by working on a rough Vim equivalent of TextMate's ⌘R functionality to run Ruby code from a buffer and display the output.
The script currently ...
4
votes
1answer
90 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
275 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
161 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
89 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
672 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
187 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
2answers
248 views
what is the load order of scripts when you start up vim?
If you start up vim with something like this:
vim -S myscript.vim file.txt
What is the load order of scripts? Does myscript.vim get loaded after or before ~/.vimrc.
If you pass in vimscript ...
4
votes
1answer
132 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
431 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
1k 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
114 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
549 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
999 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 ...