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?
...
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?
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 ...
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 ...
3
votes
1answer
969 views
Vim: Calling a custom function from set statusline in vimrc
I'm trying to implement the vim script from the book Learning vi and vim on page 202. The following function works, but when I try to use statusline to call it I get the following error:
$ vim
$ ...
2
votes
1answer
114 views
autocmd FileType vs ftplugin
What is the difference between placing:
autocmd FileType ruby setlocal ts=2
in my ~/.vimrc and placing:
setlocal ts=2
in ~/.vim/ftplugin/ruby.vim?
If there is no difference, where should I ...
2
votes
3answers
156 views
display some special character as linebreak in vim
I would like to display some (arbitrary) special character as linebreak <CR> in vim.
So far I tried misusing (certainly extreme misuse:) the non-breakable space typing
:set list ...
2
votes
2answers
127 views
Tab to exit quotes in Vim
Usually when I code in Python, I have to create a dictionary, and I press " once and it creates "|", being | my cursor.
I'm using TAB key in the snipMate plugin to use snippets. I would like to press ...
1
vote
1answer
45 views
How to enable horizontal scrollbar to pop when we do nowrap
Can someone help with a solution? I want horizontal scrollbar to pop up whenever I do nowrap and vice versa when I do wrap.
Currently I use these settings individually to ease my work; is there a way ...
1
vote
1answer
46 views
String comparison in Vimscript
I'm using Vim to read man and I'm trying to set up a script in my vimrc that will display NERDTree unless I'm reading from a man page.
I've got the following in vimrc:
" This is needed because ...
1
vote
2answers
112 views
Best way to customize auto-formatting/auto-indenting in vim for Common Lisp
I would like to know the best way to customize auto-formatting/auto-indenting in vim for Common Lisp.
Auto-formatting (I usually do this by typing '==' in command mode per line) works very well for ...
1
vote
1answer
90 views
using variable and expressions in search and replace command
I am trying to set some key mapping/macros to comment/uncomment blocks of text in my .vimrc but I can't manage to make it work.
I define some variables:
let g:comment_id='~'
autocmd ...
1
vote
1answer
69 views
move cursor to next line after input from filter command in vim
In vim I filter, say the current single line, using !! through a Unix command. To achieve this I defined the following shortcut in .vimrc
:map <Enter> !!mycommand<CR>:,+1<CR>
...
1
vote
1answer
409 views
VIM 7 and cscope: Using “cscope find f” inside a keyboard mapping for switching between files
I usually hop between files on my cscope-indexed codebase by using
:cscope find f <filename>
I'm trying to define a keyboard shortcut to prevent me having to type ":cscope find f" everytime. ...
1
vote
2answers
166 views
What does “.=” in vim scripts mean?
I've often seen assignments to variables of the form "let s.='something'" Here's the specific piece of code in a vim script that I've been struggling to understand:
let s .= '%' . i . 'T'
let s .= (i ...
1
vote
2answers
368 views
vim : insert mode problem : remaps (imap) and abbreviations (ab) in .vimrc don't work
I have a problem in vim:
If I modify the .vimrc file and add this lines:
map ;bb A78
it just works in normal mode.
If I got it, it should work in insert mode too, shouldn't it?
While editing, I've ...
1
vote
3answers
210 views
How can I map a key to execute a program, and show its output in GVim?
On my .gvimrc, I have the following line:
map <f4> :!./%<
On a source file, I have to press F4 and then enter, but it works correctly, shows the output, and hangs until I press enter ...
1
vote
1answer
328 views
Adding custom highlighting for project's API function names in Vim
How can I add new function names for .c and .h files to be highlighted, similar to this
http://stackoverflow.com/questions/2464593/custumizing-syntax-highlighting-in-vim but much ...
0
votes
0answers
102 views
Vim Cursor Color Terminal Bug
I encountered this pretty strange bug when I was trying to fix my Vim cursor color.
I am using Terminator and I found out that the cursor colors for my color scheme were not working. I did a Google ...
0
votes
1answer
67 views
Trying to create custom vim functions
This is my ~/.vimrc
filetype plugin indent on
syntax on
syntax enable
""" <F5> calls make
function! CallMake()
:!make
endfunction
:map <F5> :call CallMake()<CR>
:imap ...
0
votes
1answer
35 views
why vim see few files as arguments to CCTreeLoadXRefDBFromDisk
autocmd VimEnter * if filereadable('cctree.out') | CCTreeLoadXRefDBFromDisk cctree.out | endif
I receive error message:
E172: Only one file name allowed: CCTreeLoadXRefDBFromDisk cctree.out | ...
0
votes
1answer
80 views
Trying to write a Vim function / command?
I'm using Janus (isn't pivotal to understand the question though). Basically what they do, is rewrite :e to be :Edit to work with NERDTree, but NERDTree doesn't support force opening a file (e.g. e!). ...
0
votes
1answer
147 views
Debugging Vim PlugIn Loading
I am using MacVim on OSX 10.6 and I started getting a strange error message when I open certain files and directories with vim in the terminal. The vim command is just a symlink to the mvim script ...
0
votes
1answer
123 views
Vim: function to create comment and new subroutine using <cword>
I'm trying to write a function in my vimrc that would allow me to "hover" the in vim cursor (not the mouse cursor) over the word in question and and create a doc comment (with the word already in the ...
0
votes
1answer
110 views
coffescript custom folding
For "standard" JavaScript, I have this custom folding function which I like a lot:
function! JavaScriptFold()
setl foldmethod=syntax
setl foldlevelstart=1
set fillchars=fold:\
syn ...
0
votes
3answers
79 views
VIM spelling function
I wan't to have a function that turns spell check on then go's to the next misspelled word and replaces with the first suggestion heres what I've got so far:
function! Spell_new_word()
set ...
0
votes
1answer
199 views
VIM: Perl interface, passing a variable to Perl and reading a vim variable from Perl
I use a Perl(loader.vim) script to load VIM modules: (.vimrc) source /whatever/loader.vim
loader.vim:
function! LoadBundles()
perl HERE
while(</root/.vim/bundle/*/plugin/*>) {
my ($path, ...
0
votes
1answer
174 views
vim replace for a pattern
<created>
pat@c.com
</created>
I want to replace the above with but the username may vary i.e,pat@c.com ,harry@c.com...
<created>
tom@c.com
...
0
votes
2answers
158 views
Formatting DateTime in VIM without leading zeroes on Month, Day, and Hour
Does anyone know if there's a way to format the date generated by strftime in Vim (under MS Windows) such that Month, Day, and Hour are not padded to two digits with a leading zero?
For example, the ...
0
votes
2answers
847 views
Vim visual mode scripting: searching the text surrounding the visual selection
I'll try to explain by example..
If we have a piece of code like this in vim:
if ($feck == true && $drink == false)
{
echo 'They lie in wait like wolves..';
}
And I go to visual mode ...