Vim is a free and open-source modal text editor available for most major platforms. It allows high efficiency in many text editing tasks but has a steep learning curve. To learn the basics, try ":help vimtutor".

learn more… | top users | synonyms (2)

6
votes
0answers
289 views

Mapping control keys in GVim without <c-> and i_ctrl_v

I've got a problem that I've already solved on the X-server level (BTW: I'm running Ubuntu 12.04) but not in GVim. I have a German keyboard layout with the letters ö and ä where [ and ] are on a ...
5
votes
0answers
281 views

How can I get syntastic error checking to work with OCaml?

Syntastic works for me in general (say, if I edit C/C++ files then I get syntax error notifications), but I can't get it to show syntax errors for OCaml. My OCaml install seems fine otherwise, and the ...
4
votes
0answers
87 views

Does anybody get these weird repeated ()()()()()() in Vim?

Couple of times a day I get this, usually when typing in a browser() statement while debugging. It repeats a whole bunch of brackets, when I only typed a pair. Usually I very quickly type ...
4
votes
0answers
71 views

Mixing two syntax highlighting scripts

I write blog posts with Jekyll, and for that I end up using three different languages in the same file: YAML at the start for post metadata, Markdown in the body, and C++ in code snippets. I tried to ...
3
votes
0answers
29 views

A more powerful version of dot (repeat)

I know about recording with q into registers, but I was wondering if it's possible to set something up to quickly recall the last recording, in much the same way that . recalls the last short editing ...
3
votes
0answers
57 views

VCSCommand keeps adding an extra blank line to all my commits

I recently started trying out the VCSCommand plugin for vim to work with several subversion repositories. Every time I commit a change from vim using VCSCommit, aka. the key combo (\cc), I keep ...
3
votes
0answers
181 views

What is best way to make Vim's omnicomplete context aware for ruby/rails? (i.e., intellisense)

Vim's auto complete seems like it is just throwing the the kitchen sink at me hoping that one of the words is sothing I need. If I know the first couple characters of the member method, I am ok, but ...
2
votes
0answers
25 views

dbext connection string for sql-server

I have dbext installed into gVim - the plugin menu is visible and the help file are accessible; just not helping at the moment! Suspect it is a connection string problem. I have the following in ...
2
votes
0answers
102 views

Clang plugin issue

I have installed the plugin clang_complete. I puts this settings into my .vimrc: let g:clang_use_library = 1 let g:clang_auto_select = 0 let g:clang_complete_auto = 1 let ...
2
votes
0answers
60 views

How can I change vim mappings for accented characters

I am trying to change vim mappings for (french) accentuated characters. à (ASCII 133) I would like it to be Alt+a À (ASCII 183) I would like it to be Alt+Shift+a é (ASCII 130) I would like it to be ...
2
votes
0answers
104 views

Weird cursor movements while inserting with vim and auto-formatting enabled

I am using vim, along with latex-suite, to edit LaTeX documents. I recently added 'a' to my formatoptions since I was getting annoyed by gwaping my paragraphs all the time and noticed some extremely ...
2
votes
0answers
76 views

start python pdb with multiple arguments?

I was wondering if there is a way to start pdb with multiple arguments. Currently I know I can do this: python -m pdb script.py and then manually setup break points, with: (Pdb) break (Pdb) ...
2
votes
0answers
55 views

How can one make Vim tabularize automatically break for given column width?

Using tabularize in vim is really sweet, but one thing that I don't like is when I have one column in a set that is particularly long that messes all the others up. Generally, I like to have my text ...
2
votes
0answers
226 views

jedi-vim omni completion with not standard library

I read the README of the jedi-vim. https://github.com/davidhalter/jedi There are screenshots of omni completing with not standard library (django). I installed django by pip and tried exact same ...
2
votes
0answers
93 views

vim script: can't echo newline after input and if statement

The following function does not echo the result variable. fu! Test() let input = input(">") let result = "error\n" if 1 echo result endif endf Removing the newline from result, ...
2
votes
0answers
92 views

Wrong highlighting and indentation of Javascript micro templates in Vim

I use Javascript micro templates inside html and html.erb files in a Rails application. Unfortunately all html tags inside the script tag (with type="test/html" are not correctly highlighted, nor do I ...
2
votes
0answers
125 views

Extend Vim GUI using Python tkinter

I know there are a few ways to integrate gVIM in GTK using gtk.Socket and DBUS: Pida gtkvim anjuta-gvim VEE VimMate Vizinho But I was wondering if it is possible to say have a python plugin that ...
2
votes
0answers
101 views

My gVim sometimes acts twice when pressing Tab, Arrow Keys, Enter and Backspace in Insert Mode

I am using gVim installed by yum of CentOS on my Thinkpad T410 laptop. The version of gVim is 7.2.411-1.8.el6(i686). When editing files in insert mode, something weird happens. When I press Tab or ...
2
votes
0answers
153 views

Vim for PHP development: PHP document, manual, completion for builtin function

I have configured my vim to work with PHP, but there's some problems I could not resolve after searching on Google: First, about PHP Documentor, I have found php-doc vim plugins, but I could not use ...
2
votes
0answers
100 views

Is it possible to just view files content when traverse NERDTree?

I can traverse NERDTree, but to see file content I press go, and once opened file's buffer stays open until I explicitely close it. That makes viewing files too uncomfortable. when I traverse ...
2
votes
0answers
80 views

vim taglist and latex-suite error e21 on completion

I'm using vim with latex-suite and taglist. My taglist is usally on the left, with my tex file on the right. When I try to use auto-completion, by typing for instance "\cite{b" and then pressing F9, ...
2
votes
0answers
133 views

Is there a way to change VIM's EasyMotion plugin so it displays 2 instead of 1 charactere for multiple matched keys?

I know this question is harder than usual, but is there a way to change VIM's EasyMotion plugin so it displays 2 characteres when searching for a character that has too many matchess, like FireFox's ...
2
votes
0answers
134 views

Vim langmap breaks plugin (bépo)

I am using a bépo keymap (http://bepo.fr) and seeking the perfect vim mapping. So far I used a long list of noremap, but for many binding (for exemple, the motion aw or <Ctrl>r), the first ...
2
votes
0answers
398 views

ViM-LaTeX, python, and Mac OS 10.8.1 and a weird error

I just updated my machine to Mountain Lion (10.8.1) and am trying to install vim-latex. I have used the suite daily for about 5 years now, but when trying to do a clean install and opening up a .tex ...
2
votes
0answers
302 views

Syntax highlighting of Fortran 77 comments not working in vim

I have a code written in Fortran 77 and I read it with vim. The code is written such that the comments are on lines starting with c, as is standard in Fortran 77. However, vim does not recognize them ...
2
votes
0answers
138 views

Add pythonhelper to a MacVim statusline in vim-powerline

I would like to add pythonhelper to vim-powerline, using MacVim. There is an issue that discusses this on github, but although the issue is closed the resolution was not clear. What is the best way ...
2
votes
0answers
71 views

Issue with concealed symbols

I have &concealcursor=nc and this works fine except one thing: say, I have a following line: "foo bar ~*baz*~ foo", and the symbols ~ and * are concealed. I move cursor through this line, and ...
2
votes
0answers
473 views

E426: tag not found error all the time

I've got a macvim snapshot 64 downloaded from https://github.com/b4winckler/macvim/downloads and exuberant ctags installed via homebrew: which ctags /usr/local/bin/ctags my tags variable in vim ...
2
votes
0answers
295 views

Load the ftplugin folder via janus

I posted an issue at github about this as well, but I figured this would also be a good spot to ask: Does anyone know how to accomplish this functionality? I've been trying for the past couple of ...
2
votes
0answers
392 views

vim indentation braces inside parentheses

In vim (eg 7.3), how can I use/modify the cindent or smartindent options, or otherwise augment my .vimrc, in order to automatically indent curly braces inside open parentheses to align to the first ...
2
votes
0answers
236 views

vim: Including blank lines following region in fold

I'm currently attempting to improve the folding behavior of Matlab files in Vim. I have a syntax file generated and the folding behaves as I want with one exception. Say I have the following code: ...
2
votes
0answers
133 views

JSLint and VIM requiring manual UAC elevation on Windows 7

I'm a big fan of JSLint and I use a plugin for VIM to display Lint output in the quickfix window: http://www.vim.org/scripts/script.php?script_id=2578. Unfortunately, I'm having some trouble with it ...
2
votes
0answers
117 views

vim path expand stuck in 8.3 mode

Running vim 7.3 on win32. :echo expand("%:p") C:\Program Files\Common Files\Microsoft\ Shared\Stationery\Bears.htm That's fine. :echo expand("%:p:8") ...
2
votes
0answers
63 views

gVim and Error Creating Window Handle

I use gVim on a day-to-day basis for editing files. I've noticed that, reliably, I can open a file at a UNC path, and when I do, a few things will happen: None of the menus in ANY app will open ...
2
votes
0answers
174 views

GNU Source-highlight use same colours as vim

I'd like to have GNU Source-highlight [ http://www.gnu.org/software/src-highlite/ ] use the same colorings as my vim setup [ http://vimdoc.sourceforge.net/htmldoc/syntax.html ]. I'm using a recent ...
2
votes
0answers
146 views

Vim XMLns context awareness

I've used Vim's g:xmldata_ to describe xml possible elements to be able to use omni-compete for xml. The problem is not each 'A' node has 'a0', 'a1', 'an'. Sometimes 'A' node has only 'a0'. And the ...
1
vote
0answers
16 views

Multiline errorformat in vim

I'm trying to match on C error messages like this: gmake[1]: Entering directory `/project/swbuild45/ethanl/swfeature_int/pkt' ... sw/se/xc/bsd/routing/rib/src/rib_bfd_thrd.c: In function ...
1
vote
0answers
39 views

Including header files recursively for syntastic

I'm working with a C++ project and trying to configure it to use syntastic. In my project I have a nested directory structure of header files (The actual nested structure is much worse, this is an ...
1
vote
0answers
25 views

Why doesn't Syntastic catch JSON errors?

I just added jsonlint for Syntastic, and it's not catching any syntax errors. flake8 is working fine for Python, and has been for a while, but no jsonlint. Below you'll see the relevant portion of my ...
1
vote
0answers
47 views

Write a command to increase or decrease the number of vertical splits

I usually have my Vim screen split into two vertical windows, each of which may be further horizontally split. Sometimes, I want to add or delete a vertical window. Is there a way to detect how many ...
1
vote
0answers
60 views

Vim: how to install the UltiSnips plugin?

I tried installing the UltiSnips plugin, but when Vim is loaded it creates a torrent of errors: Error detected while processing C:\Documents and ...
1
vote
0answers
33 views

Why does my vim-powerline not express unicodes?

I returned to vim after know about 'Vundle' installer, so that I installed vim-powerline through Vundle, and I checked its result, but it is not work. I set my locale setting from ko_KR.UTF-8 to ...
1
vote
0answers
51 views

use regex vim with tagbar to get filename of graphic in latex

I'm using vim and tagbar to write my latex files. In the latex source, the input for a graphic look like this: ...
1
vote
0answers
36 views

gvim pid in $! different to wmctrl list

I have a script which launches multiple gvim windows. I want to position them in a certain way. wmctrl can do this, but because there are multiple instances, the window names are ambiguous. I figure: ...
1
vote
0answers
73 views

Adjusting python auto-complete behavior

I have been using Aptana with pydev and IDLE to learn python2.7. And it has done a fair job of helping me to learn, except for when I came across this microblog tutorial. In it there is a line from ...
1
vote
0answers
40 views

How do I compose format=flowed emails that include hanging indents with vim?

Is there a good way to configure vim to send format=flowed emails that include hanging indents? My complete vimrc (for testing purposes) is: set nocompatible set fo+=awn set tw=72 set ai I'm ...
1
vote
0answers
47 views

Vim with vim.fireplace closes/hangs when trying to open a Clojure file

I installed vim and vim.fireplace, did lein repl and tried to open core.clj generated by lein new. I'm using Windows. A cmd window opened and tried to do lein classpath. After a few seconds gvim just ...
1
vote
0answers
75 views

Vim syntax high-lighting for C++11 that does not mess up other highlighting. E.g., class/namespace scoping

I am aware of this script: http://www.vim.org/scripts/script.php?script_id=3797. It has been suggested a few times, and other questions regarding C++11 syntax for Vim have been shut down due to ...
1
vote
0answers
52 views

Why my jump list is not working?

When I keep typing <C-O>, it can only jump back 3-4 positions and then back to the first place again. Here are outputs of :jumps when I pressing <C-O> for multiple times: 1 . When ...
1
vote
0answers
50 views

Different Behaviour of cindent Between vim 7.0 and vim 7.2

I am using a .vimrc file on one machine that indents my parentheses exactly how I like them using the following lines: set tabstop=3 set shiftwidth=3 set ai set cindent set cino=(s,U1,)0,m1 The ...

1 2 3 4 5 15