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)

0
votes
1answer
17 views

Syntax Highlighting for Template Toolkit (.tt files) in VIM

My goal is to get syntax highlighting for files using extension *.tt and so far it's been a frustrating "no" every time. I found the vim-perl plugin. Installed using legacy method 'make install' and ...
1
vote
1answer
37 views

Automatically change colorscheme based on FileType

I've read this SO question I've also executed the following help topics: :h BufEnter :h BufNewFile :h BufLeave ...but still - I have the following in vimrc - how does it work? colo pyte autocmd! ...
2
votes
2answers
31 views

How to detect if Vim is running in restricted mode?

... or in any mode for that matter. I just want to prevent some extensions from loading when that is the case, something like: if ! currentmode('restricted') Bundle('some-extension') endif
0
votes
2answers
31 views

Highlight lines longer than 80 characters in Vim doesn't work with php

I want to identify lines longer than 80 characters with Vim and I've found this solution: match ErrorMsg '\%80v.\+' This works in an html file or in the .vimrc file, but not in php files. I also ...
0
votes
2answers
19 views

Jump to the line which says `modifed…` while using :Gstatus in vim-fugitive

I used :Gstatus and can see the status window. How do I directly jump to the line which say that a file has been modified. # On branch refactor-modeldatasource # Changes not staged for commit: # ...
0
votes
0answers
26 views

Sometimes vim doesn't expand foldings on horizontal movement

I am experiencing a weird problem: vim doesn't expand my foldings sometimes when I use a horizontal gesture like l. It always expands if I use zo though. I can see hor option in my foldopen settings ...
0
votes
2answers
23 views

Vim is loading the system syntax after my custom syntax so my custom syntax is not being applied

I have a custom javascript syntax file in my ~/.vim/syntax folder on ubuntu 12.04, but when I open a .js file in vim is uses the system syntax instead: Output of :scriptnames 1: ...
2
votes
2answers
50 views

vim folding - how to copy unfolded lines

I would like to copy/delete all the lines except the folded lines and vice-versa. How do I do that? It is ok if I have to use a plugin for that as well. But, I would love to have that functionality.
-2
votes
1answer
36 views

What is the use case difference between modifiable and readonly in vim? [closed]

The first one prevents you from entering insert mode, and the second one prevents you from writing the file. But functionally speaking, do they achieve anything different?
0
votes
2answers
40 views

Different text width in the same filetype in vim

I am editing my markdown files wich contain some code examples (like here). Is there any way to tell vim, when it is editing markdown files, to set textwidth=80 to everything exept where I keep my ...
-1
votes
3answers
59 views

Deleting current file in vim

How can I delete from the disk the current opened file within vim? Would be nice to also close the buffer. I see you can use NERDTree for that, but I don't use this plugin.
1
vote
5answers
87 views

compute difference of number in file using perldo

I have a file with two numbers 4 4 4 4 9 8 7 7 Each line may have a different number of spaces. What I would like to do is use perldo to compute the difference of the two ...
2
votes
1answer
43 views

Alternatives for reopening buffers from last session in VIM?

I know mksession, and I use it, but sometimes, it's too much, it saves too much state, which is a problem, for example, when you update some plugins, and want to close/open VIM to start it in a fresh ...
-10
votes
0answers
135 views

Emacs or Vim for C++ 11 development? [closed]

I can't find a good article on this, I can't even find something really convincing that can help me with the final decision. I like to use the terminal because the keyboard it's faster than keyboard ...
-1
votes
2answers
74 views

how to understand below vim script entries?

Question 1: I only know the bash script like this let var = value, but how to understand the mean of the below grammar under vim? let g:counter += 1 return g:counter . '. ' Question 2: What’s the ...
1
vote
2answers
73 views

How do I use vim as 'git log' editor?

When I run git log, what exactly is the editor git log is using? Also: Is there anyway I can use vim as my default editor for git log? If I want to search against the git log, what's the best ...
0
votes
2answers
36 views

256 colors in vim and How to install new color scheme [closed]

I'm under Ubuntu 64 bit 13.04, I'm starting with vim and I don't understand an error that I'm getting Error detected while processing distinguished.vim: line 16: The distinguished color scheme ...
0
votes
2answers
39 views

How to replace the contents of the current buffer with the contents of a file?

I have an external script that takes a Javascript file and automatically fixes some style issues, I want to apply it to the current buffer right before writing (BufWritePre,FileWritePre). So my idea ...
0
votes
0answers
42 views

Vim specifically does not allow mapping of Home key via t_kh [closed]

map ^[[1~ g^ (where the ^[ is the literal \033 escape char) works to get Vim to override the Home key. Pressing the Home key in the absence of any maps has it correctly go to the front of the line. ...
1
vote
2answers
71 views

Vim on Windows started showing ^M characters

I am on Windows 7 running PowerShell version 2.0. I used the following PowerShell code (from this answer: http://stackoverflow.com/a/65148/360840) to modify my PowerShell profile: "`nNew-Alias which ...
1
vote
0answers
35 views

Vim+CtrlP: Behavior to initially show MRU files and switch to searching files when typing

I'm having hard time configuring CtrlP for vim the way I want it to work. Ideally I'd like CtrlP to open with a list of files in most recently used order. However, when I start typing it would switch ...
1
vote
2answers
41 views

vim function external call

Currently my vimrc has the following key mappings: map <leader>m :w\|!clear && rspec --drb %<cr> map <leader>k :w\|!clear && rspec --drb ...
0
votes
1answer
65 views

exuberant ctags with C not yielding redirection to function definition properly

I was using ctags with C on an old project, mostly coding in Vim. ctags was working fine[redirecting perfectly] Now the code base has changed a lot, I ran command : ctags -R, now when I do Ctrl + ], ...
1
vote
1answer
45 views

in VIM, How to set the initial window size via file browser?

I'm using vim to browse through different folders. (i.e., issue :tabe . command in vim) However, when I open the file either in split window (pressing 'o') or in vertical split window(pressing 'v'), ...
3
votes
1answer
48 views

Unexpected red brackets highlight in vim

In my C++ code vim shows red highlighted brackets in the following piece: This is some in-built functionality as I tried removing .vimrc, but it still shows them red. What's going on and how to fix ...
1
vote
2answers
31 views

snipmate is not working in vim

The following file is my vimrc file. I tried sourcing snipmate.vim file, there is no set paste in my vimrc file. just did a git clone of the snipmate in my .vim directory and added the location to the ...
1
vote
1answer
53 views

Copy lines to os x clipboard from vim on remote console

I'm using heroku, and I've logged gotten access to bash using heroku run bash. I found out it was possible to install vim on heroku with this shell script: #!/usr/bin/env bash curl ...
0
votes
1answer
38 views

Sending Ctrl-Right to Vim inside Tmux

I'm using Vim that's running inside a tmux session. Within Vim, I have Ctrl-Right bound to :tabnext: map <C-right> :tabnext<CR> "next tab I want to be able to invoke this binding ...
0
votes
1answer
40 views

Why does gf does not work for vim but ctrl+] works?

I have a file e.g. a.pl that has this method call: add_location(@crew); The actual definition is in the same file. If I do: CTRL + ] the cursor jumps to the definition. If I do: gf I get: E447: ...
0
votes
1answer
61 views

Vim Editor->clang_complete: no python support available

Case: Testing clang_complete with gVim 7.3 I installed MinGW, then followed the tutorial here to download and compile clang. It compiled for around an hour, then make install. Clang worked. I ...
1
vote
2answers
51 views

Does the order of the sections of code in my _vimrc matter?

How do the sections of code in the _vimrc file interact with each other? My current file looks like the following but I'm wondering if it matters if a line such as filetype plugin indent on is at the ...
0
votes
2answers
48 views

How can I run ctags in a large code base?

Assuming I have a code directory structure as follows: /top /second /core a.pl b.pl c.pl /common d.pl e.pl ...
3
votes
1answer
52 views

How to go to the end of the file in vim while preserving the current column under the cursor?

Often when I use a visual mode, I would like to expand the selection to the whole file. But hitting VG takes me to the first character of the last line. I would like it to take me to the same column ...
2
votes
1answer
49 views

Multi-user secure shell session sharing [closed]

I'm looking to do some pair programming with a collegue remotely, and I'm looking for the best tool to help us achieve this. Ideally I'd prefer for the remote user to have as little access as ...
2
votes
2answers
49 views

Running gvim from MSYS — how to avoid/change MSYS enviroment variables?

When I run gvim from MSYS, things go wrong during initialization. Namely, gvim can't find the initialization files that are in 'C:\Documents and Settings\username\vimfiles. [Specifically, gvim ...
0
votes
1answer
27 views

In vim, how do I redirect the output of a vimscript function?

I have this vimscript function function! Env() redir => s sil! exe "norm!:ec$\<c-a>'\<c-b>\<right>\<right>\<del>'\<cr>" redir END return ...
0
votes
1answer
76 views

Python and Homebrew Vim

On my Mac, I use MacVim with homebrew for most of my editing. ~|⇒ vim --version VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Jun 20 2012 13:16:02) Compiled by root@apple.com Normal version without ...
3
votes
1answer
49 views

creating tags for a script language for easy browsing in vim

I use ctags+Vim for a lot of my projects and I really like the ability to easily browse through large chunks of code quickly. I am also using Stata, a statistical package, which has a script ...
0
votes
0answers
32 views

Varying font size in gvim windows

Can I make the font size in my NERDTree window smaller than in all other windows of gvim? Generally I need large font size of 15 but I'd like the folder tree window of NERDTree to be 12 - is this ...
4
votes
0answers
67 views

Vim-like window manager [closed]

In my daily work I use a lot vim as my editor and the tiling window manager awesome. In my opinion both are great tools. What I don't like about awesome (and multiple other tiling window managers) are ...
1
vote
0answers
37 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
1answer
40 views

How to solve the collision of TAB key mapping of `UltiSnips` plugin in the Vim

I've set the mapping keys as follows: " Easy indent for code blocks nmap <tab> v> nmap <s-tab> v< vmap <tab> >gv vmap <s-tab> <gv That ...
1
vote
3answers
48 views

Delete specific line in vim directly from command mode

If I'm in command mode in vim, can I remove a specific line without first going there? Say I want to remove line 10, I could do: :10 dd But those are two commands. Can I do this in one command?
1
vote
2answers
44 views

What alternatives are there for easier access to {, [, \ in non-US keyboard mappings?

All my life as a developer I was annoyed that on german keyboards some common programming characters are mapped to very awkward combinations: [ = AltGr + 8 ] = AltGr + 9 { = AltGr + 7 } = AltGr + 0 ...
1
vote
2answers
28 views

vim ident: don't remove tabs indent when closing }

When I have the following in vim with cindent or vim-javascript turned on: if(bla){ # (# shows cursor) I type a new line: if(bla){ # and then close the } if(bla){ } The problem is, ...
1
vote
1answer
65 views

How to fix json indentation in vim?

In vim, the default indentation for json is: { "employees": [ { "firstName":"John" , "lastName":"Doe" }, { "firstName":"Anna" , "lastName":"Smith" }, { "firstName":"Peter" , ...
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 ...
2
votes
1answer
47 views

Making a command only run in certain cases in Vim

I'm trying to figure out how to get this command to only run in certain cases: au BufNewFile,BufRead *.js imap <buffer> {<cr> {<cr>}<c-o>O<Tab><Down>;<Up> ...
1
vote
1answer
39 views

Sublime Text 2 vintage key mapping like vim

i am working with Sublime Text2 in vintage mode. I disabled the arrow keys, so i don't use them to move the cursor in insert mode. Now is was wondering, if it is possible, to map the up/down keys, so ...
1
vote
3answers
108 views

Vim: How to delete repetition in a line

I am having a log file for analysis, in that few of the line will have repetition of it own, but not complete repetition, say Alex is here and Alex is here and we went out We bothWe both went out I ...

1 2 3 4 5 204