Tagged Questions
0
votes
1answer
25 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
39 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
24 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
1answer
54 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
45 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
34 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 ...
0
votes
1answer
40 views
how to highlight quickfix result keyword?
Normally, when use vim with cscope, it display the search results in quickfix window at the bottom.
when type :cn in the commandline, it will jump to the beginning of line which contains the keyword.
...
1
vote
1answer
37 views
How to add vim-plugins into git repo?
I created a git repo and add vim-plugins ( which is installed by vundle) into it, after I pushed this repo to github, and clone this repo to another server, I found that vim-plugin's directory is ...
1
vote
2answers
73 views
Why cannot git add bundle plugin's files?
I created a git repo and add vim-plugins ( which is installed by vundle) into it, after I pushed this repo to github, and clone this repo to another server, I found that vim-plugin's directory is ...
0
votes
1answer
23 views
Unknown function: NERDTreeAddKeyMap
I'm trying to add a keymap to my NERDTree configuration which executes the current FileNode and displays the output. I put this script file in my ~/.vim/plugin directory.
The keymap actually works ...
1
vote
2answers
146 views
Use code completion in vim as in sublime text
I would to have a autocompletion exactly as in sublime text but in vim.
I want this behaviour :
When I start to type a word, I want to have a box which suggest completions;
In the suggested ...
3
votes
1answer
56 views
How can I tell git which vim to use?
When I edit a commit message with vim (by entering git commit), vim opens, but first with a prompt that the YouCompleteMe plugin is unavailable:
$ git commit
YouCompleteMe unavailable: requires Vim ...
0
votes
0answers
56 views
How to emulate :autocmd VisualLeave * or :autocmd VisualEnter * in vim?
As you know, there are (sadly) no VisualLeave or VisualEnter autocmds in vim. Is there a way to emulate it?
(Sidenote: Having such events would add even more power to vim)
1
vote
1answer
99 views
Vim syntax highlighting for R on Mac OS X Mountain Lion
I have tried downloading many R syntax highlighting plugins to no avail. None seem to work... However, when I drop sourthernlights.vim into ~/.vim/plugin this new color profile is in effect for all ...
0
votes
2answers
111 views
snippet in vim - any option to go back to the previous paramter?
I am using neocomplcache along with neosnippet and honza's vim-snippets. They are great, except that when I press Ctrl-k, I can go to the next parameter, but I have no way to go back to the previous ...
0
votes
1answer
78 views
Is there a solution for code completion of Factory Design pattern in vim
So I have switched over to VIM for all of my coding. I use to use PHPStorm for my Magento development. One of the things that make development hard in Magento, and using an IDE, is the fact they use a ...
1
vote
0answers
35 views
The plugin does not work on new tab in gui mode
I use flake8-vim plugin. http://www.vim.org/scripts/script.php?script_id=4440
If I type:
gvim blabla/python_code_file.py
I can use command:
:PyFlake
Then if I open a new type:
:tabnew ...
0
votes
2answers
34 views
how to insert the filename before inserting the file into another file in vim
Is there a way we can insert the filename before we insert the file content into another file
i know how to insert a file into another -- :r
But how to insert the filename which we are inserting ...
0
votes
1answer
35 views
How to use a plugin in a vi-mapping?
I'm using Tim Pope's vim-commentary plugin, loaded via pathogen.
Now I want <leader>yyp to copy a line of code and comment out the original. I can do this with the command yypkgccj in normal ...
0
votes
3answers
407 views
Add GoLang syntax highlighting for VIM
I'm trying to add Go language syntax highlighting to VIM on ubuntu with resources and direction supplied here http://go-lang.cat-v.org/text-editors/vim/.
Go comes with a go.vim file that contains ...
3
votes
1answer
17 views
How to use second argument (input) of system() function
The documentation to vim's system function says this about the second argument:
When {input} is given, this string is written to a file and passed as stdin to the command.
What I understood from ...
3
votes
1answer
79 views
vimwiki style links without vimwiki?
One of my favorite features of vimwiki is the way it handles links. Unfortunately, I use something else (vimoutliner) for my main note-taking, and it doesn't have anywhere near the linking capability ...
0
votes
1answer
32 views
Vim Syntax Modify
I am trying to color different levels of parentheses differently in vim -like rainbow parentheses. But I couldn't do it without breaking, for example, css highlighting.
Problem is that: syntax of ...
1
vote
1answer
45 views
Where does vim store custom key mapping cache?
I've installed a plugin via vundle, and later decided to remove it. I've run vim +BundleInstall +BundleClean +q and I'm quite sure everything related to this plugin is removed from .vimrc and ...
0
votes
0answers
58 views
How to set vim path for haskell project?
I'm trying to set up haskellmode in vim for my haskell project. I'm currently trying to make the "go to declaration" of a function work. To allow this shortcut to work I assume vim needs to know the ...
1
vote
2answers
54 views
vim: where to put default values for plugin variables?
What is the best way to set default values for plugin variables?
Ideally, I would like to have those variables set before .vimrc is loaded, such that the user can override these values if he wants ...
1
vote
1answer
58 views
How to add custom messages to Vim quicklist?
I have a file which contains code review comments by file and line numbers.
I'm writing a Vim plugin which uses Vim quicklist to display review comments when i open a file and navigate to the line ...
0
votes
1answer
104 views
Vundle plugin: Install concrete version of plugin
I use vim and try the 'Vundle'. It helps to install plugins like in Ruby on Rails:
Bundle 'scrooloose/nerdtree'
Bundle 'scrooloose/nerdcommenter'
... I write in my _vimrc file
But ...
0
votes
1answer
46 views
How to get vim config variable value in ruby vim plugin?
There is a vim plugin, which allows customization using a variable in vimrc:
let g:foo_plugin_command="bar"
How can i get the value of this variable in a ruby method that is part of the plugin ...
0
votes
2answers
618 views
What are best VIM plugins to configure efficiency?
There are a lot of options with VIM that can be configured, and many of the are related to memory management and speed up, or some related to file opening and utf8 support. What plugins can I install ...
0
votes
1answer
91 views
How to make cursor change in different modes in vim?
How can I make Vim change cursor in different modes so that these conditions are satisfied:
Without using gconftool or such tools. I need this affect only one instance of Vim, not the whole ...
0
votes
2answers
49 views
command-t not finding files
I've recently installed command-t plugin on vim and started playing with it.
But now I feel that it fails finding some files.
For example: I have and inc folder and none of it's contents is listed ...
0
votes
1answer
51 views
Extend vim file syntax to another filetype not working
I want to extend the filetype syntax and highlighting of an existing filetype. The basic structure of my new file syntax is as follows:
" Some local (new) syntax that I want to match
syn match ...
0
votes
2answers
203 views
VIM colorscheme management with SPF-13 / csapprox
I'm using the spf-13 VIM setup 1. I'm a bit confused about the colorschemes. It seems they just source the files which call :hi set color commands, and since not all colors are set in all ...
2
votes
1answer
50 views
Vim script: check if the current word is/isn't a C/C++ keyword
I'm working on a small vim plugin which should highlight current word occurrences after cursor idle.
I have a highlight part, and what I need is to check if the current word is not a C/C++ keyword.
0
votes
1answer
60 views
Change location of vim yankring history file
The yankring plugin for Vim creates a file in my home directory called yankring_history_v2.txt. How do I tell the plugin to store this file in another location?
0
votes
2answers
67 views
Is it possible to configure behaviour of NERDTreeToggle to use NERDTreeFind when opening?
Is it possible to configure NERDTree so that :NERDTreeToggle acts like :NERDTreeFind if a buffer is not open (instead of the default :NERDTree) ?
Failing that, would it be possible to create a ...
-2
votes
2answers
35 views
Checking syntax when enter is pressed in Vim
I've added some vim configurations and I've lost the ability to check for syntax errors when pressing enter.
I think this worked by default and I used it with PHP.
Does anyone know which ...
0
votes
1answer
76 views
Vim EasyMotion search matches
Vim EasyMotion has search character using:
<Leader>fc
which highlights all occurrences of character from which i can choose.
Is there an equivalent motion for search matches like
...
0
votes
1answer
58 views
vim : YankRing interfering with 'dt' commands?
I'm loving YankRing, but I have lost a key shortcut. Before YankRing, I could delete text to the end of the line with:
dt$
With YankRing, now when I enter 'dt', I get a prompt for the character I ...
1
vote
2answers
169 views
Jump to the errors in the quickfix or location list for the current line in Vim (with Syntastic)
I started using the Syntastic plugin for Vim, which will run a syntax checker on the current buffer and then indicate any lines which have errors. I can open up the list of errors as as a location ...
1
vote
0answers
36 views
neocomplecache&clang complete installed: code complete work for cpp file, whereas doesn't for c file
I have installed the vim plugin neocomplecache and clang complete and the patch of them named neocomplecache_clang_complete.
Also, I installed the clang to make clang complete works.
A pure c file ...
2
votes
2answers
205 views
How to get Vim Ctrl-P plugin to index files inside a git submodule
If I run Ctrl-P natively out of the box, it works 100% as I desire, except that with the size of the codebase I work with, it takes a very long time to index directories.
To make Ctrl-P cope with the ...
1
vote
3answers
341 views
Sublime code-like method browser in Vim
Sublime code has a shortcut Super-R which opens a method browser listing all methods in current class (Ruby). Is there a plugin to get similar functionality in Vim?
"/def " or "m]" work only if ...
1
vote
0answers
151 views
Why is fugitive-:Gdiff exploding in colours and not doing anything useful?
I have just installed fugitive and it's working pretty nicely. There appears to be something wrong with :Gdiff though, probably due to an incompatible setting somewhere that I'm hoping you can help me ...
0
votes
1answer
68 views
Vim Autocorrect when wrong spelling is typed
How do you make vim auto correct a spelling by replacing it with the first suggestion automatically immediately after I finish typing that word?
I tried
:imap <Space> ...
0
votes
1answer
53 views
VimL: Get extra KB from function that outputs file size
Right now I'm creating a plugin of sorts for Vim, it's meant to simply have all kinds of utility functions to put in your statusline, here's the link: https://github.com/Greduan/vim-usefulstatusline
...
0
votes
1answer
58 views
VimL: How to find out if I have CAPS lock on/off
Right now I'm creating a plugin of sorts for Vim, it's meant to simply have all kinds of utility functions to put in your statusline, here's the link: https://github.com/Greduan/vim-usefulstatusline
...
1
vote
3answers
149 views
Easiest way to test vim regex?
I'm trying to write a vim syntax file, one problem I'm dealing with is vim's regex syntax is different from most other languages(I think the one called "perl compatible regex", Python, JavaScript etc. ...
0
votes
2answers
121 views
Installing fuzzyfinder vim plugin
I unziped the vim-fuzzyfinder and vim-l9 packages in my ~/.vimrc directory
[shetye@dev03 ~/.vim/vim-fuzzyfinder]$ls
autoload doc plugin
[shetye@dev03 ~/.vim]$cd vim-l9/
[shetye@dev03 ...


