0
votes
1answer
35 views

How can I use the Tab key to indent in vim with SuperTab enabled?

I've just enabled SuperTab in vim, and if I try to indent a blank line, SuperTab is attempting to insert strings. What I'd like, I guess, would be to have SuperTab offer completions only if there is ...
0
votes
1answer
30 views

gVim ProportinalResize error

I have the ProportionalResize plugin installed, but it throws the following error message (shown below) everytime I resize the whole GUI-WINDOW after performing a window split. I realize this is a ...
1
vote
0answers
31 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 ...
2
votes
4answers
77 views

VIM inefficient when working with many files

When you are working with more than 20 files, the number of tabs open overflow the capacity of the tab bars and it becomes really annoying to switch between them. Also, clicking on the tabs is ...
0
votes
1answer
27 views

vundle: ConqueTerm: not an edit command

I tried to install Conque-Shell via Vundle, and when I input :ConqueTerm bash in vim, it showed 'ConqueTerm: Not an edit command'. I thought there was something wrong with my path. But I did write set ...
-4
votes
0answers
47 views

What is the most pertinent language for extending a vim-like editor [closed]

What language do you think would be most useful for a rewrite/(change of the extension mechanism) of the vim editor and why. Please consider not only the power of the language but also popularity ...
1
vote
0answers
74 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
2answers
30 views

How can I join two commands together in vim?

I am trying to combine two commands for Bundle plugin in vim. Because BundleUpdate pulls all plugins and installs them and it is slow. I have the following below. The first two works fine, but the ...
1
vote
1answer
35 views

Vim: Remove mapping created by vim-plugin

I use the Vimwiki-Plugin a lot, but remapping <Backspace> and <CR> is just anoying. If I use :nmap, the mapping is shown: n <CR> @<Plug>VimwikiFollowLink n ...
2
votes
1answer
62 views

Elegant way to check if a global plugin variable is set in a vim plugin

I used to use vim during the last years for editing configs and scripts on remote servers. A couple of weeks ago I decided to take the next step and try to use (Mac)vim as my regular editor besides ...
2
votes
0answers
93 views

Moving from Eclipse to Vim for my pet Python [closed]

I am a programer going through a early-mid coder crisis. I was brought up on Elipse, learning it as I learned java. and when I had to learn C I ran back to it, because its code completion, debugger ...
0
votes
1answer
85 views

vi plugin - Stab - replace regular tabs with spaces, bundle as plugin and autostart

for long period I'm looking for a good indentation plugin, and recently I found: http://stackoverflow.com/a/1610732/2034967 this is an awesome indentation(the best in my personal opinion) and I use ...
2
votes
1answer
31 views

Vim: Wrap a plugin mapping with my own expression

I have a plugin which has the following mapping: :i <CR> <CR><Plug>DiscretionaryEnd I'd like to also create my own expression for <CR> which falls through to this ...
2
votes
1answer
266 views

My YouCompleteMe Vim plugin doesn't support STL

I just compiled and installed Vim, Vundle and YouCompleteMe plugin according to the introduction on Github. But the YouCompleteMe plugin doesn't work well in my Vim. It can auto complete the ...
3
votes
3answers
805 views

Vim powerline (Lokaltog's) weird characters in MacVim

I'm trying to use Powerline plugin (https://github.com/Lokaltog/vim-powerline) for the first time. Plugin seems to be installed. I use vundle with the following command: Bundle 'Lokaltog/powerline', ...
1
vote
2answers
62 views

Warning keep popping when running conque in VIM

When running conque in VIM, the warning message prompts out every time: Warning: Global CursorHoldI and CursorMovedI autocommands may cause ConqueTerm to run slowly I found a method to remove the ...
2
votes
2answers
62 views

Any Vim Plugins Portal Websites for All of the Programmers?

I am one of vim newbies. Does anybody know some good websites where we can find the current trend for vim plugins? Better to have the things that 1. have categories. 2. show how much they are ...
0
votes
1answer
88 views

how to make a vim filetype plugin

I want to make a filetype plugin(in fact asm) of vim. After Searching for a while on the Internet, i found that i should add a asm.vim in ~/.vim/ftplugin folder. So I added that new file asm.vim in ...
4
votes
3answers
90 views

How to enable and disable a Vim syntax script?

I'm using the css_color.vim plugin to highlight CSS hexadecimal color codes with the actual color. It's a bit distracting to have the highlighting turned on all the time so I am wondering if there is ...
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 ...
0
votes
1answer
38 views

Return focus to vim when using screens plugin after ScreenShellFocus?

The screens plugin turns vim into a kind of dreampie, only its a whole lot better because you have more control over what gets send even when you have multiple buffers and specific text within those ...
1
vote
1answer
46 views

vimballPlugin.vim is loaded but cannot install from vimball

I tried to install a plugin netrw.vba using vimball on vim 7.3 with :source %, but got this error line 2: E492: Not an editor command: UseVimball I came across this post Trying to install a ...
0
votes
1answer
126 views

Vim: My plugins and color schemes won't work?

I was trying to play around with my vimrc file and discovered plugins (specifically one that should allow me to scroll through color schemes) however it seems that the plugins are not working. What I ...
0
votes
1answer
66 views

gvim AnsiEsc plugin

When I try to source AnsiEsc.vba from gvim I get: Error detected while processing function vimball#Vimball What am I doing wrong ?
4
votes
1answer
453 views

Fix native Cygwin Vim Python support

After installing the python-mode plugin for Vim on my Linux machine, I am getting the following error message on my Windows machine with Cygwin using the same .vim folder: pymode.vim required vim ...
2
votes
1answer
36 views

How to detect which shortcut(s) are mapped to a specific command in Vim?

In short, I'd like to provide a help window in a Vim plugin that can detect which shortcuts the user mapped to the plugin's commands in their .vimrc. Is there a way to see which shortcuts a user may ...
1
vote
1answer
22 views

How do I see which files I have open in command-T

I'm using the vim plugin Command-T. How do I see which files I have open in command-T?
4
votes
2answers
154 views

Cannot get Pathogen to work in Vim

I know there are multiple posts on this question but I have tried with no avail to get this simple part of Vim to work. I would like to get the pathogen plugin to work with Vim. As a few points, I am ...
-3
votes
1answer
45 views

Where can i find the plugin which opens the file under cursor in Vim [closed]

I am referring to this particular plugin http://vim.wikia.com/wiki/Open_file_under_cursor I tried searching in vim site but i am not able to find it. Googled a lot as well , but no luck. Can anyone ...
0
votes
2answers
79 views

Set color of quickfix arrow in Vim buffer

When I commit the cardinal sin of using == instead of ===, Vim, or its minions of scripts, opens up the quick fix window with some useful tips. Using vim-hier, I have the incorrect line highlighted ...
3
votes
3answers
96 views

Looking for a tag filter plugin for VIM

I am doing research for a book, and I have copied all relevant passages in a text file in VIM. Each reference is followed by tags preceded by @ (i.e., @war @philosophy). I am looking for a VIM plugin ...
2
votes
2answers
38 views

Converting and reverting in VIM the endnote {author , #XXX} references? [closed]

I am facing a problem to convert a document that has the following: This author {john, #99} said that ... ... bla bla this other author mentioned {barlic, #1508} ... I would like that vim ...
0
votes
2answers
335 views

VIM support to upload via SFTP

I am used to Sublime's plugin that let's you do a mapping between your local project and a remote project. By doing so, when you are done editing a file, you can do a right click and "Upload file" ...
1
vote
2answers
78 views

wrapping sections with HTML tags in vim

I want to be able to quickly wrap entire sections of my HTML with other tags. I run into this a lot when I realize I need an outer div around my other divs, like so: Original HTML: <div ...
4
votes
1answer
1k views

Vim supertab and jedi-vim

Posting as a follow up to How to check if SuperTab and jedi-vim is activated? and have done what Ingo Karkat proposed. Now I wonder what is broken and how I fix it. Here is the output: :verbose imap ...
1
vote
1answer
72 views

Binding PHP documenter script to <C-P> in Vim

As suggested in an answer here: VIM Insert PHPdoc automatically I was trying to bind Ctlp to the PHP documenter script in order to generate comments. I used these lines at the end of my .vimrc ...
3
votes
4answers
3k views

Is there vim plugin for notepad++?

There are a lot of questions and answers about vim and notepad++ but it's not definitely clear, what is best way to make notepad++ act like a vim (if it is possible at all). update It seems than this ...
2
votes
1answer
104 views

Some Surround.vim commands don't work

Just installed the surround.vim plugin and some of the commands don't work as expected. I am using this question as an example This is a lo*ng line and I want to highlight two words a ys2aw" should ...
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 ...
1
vote
0answers
49 views

Command-t plugin for Vim ignoring folders directly inside the user folder

I have just installed Command-t on MacVim, OS X Lion. It works but for some reason it won't list any folder on the user folder except for the OS X Lion's defaults. I have already tried :CommandTFlush, ...
0
votes
1answer
93 views

Ruby message error installing command-t plugin for MacVim in OS X Lion

I'm following this video tutorial for installing Commant-t on MacVim. At a point I'd have to perform the command ruby extconf.rb at the folder ~/.vim/ruby/command-t. I'm getting the following error: ...
0
votes
1answer
41 views

Get the pos_x and pos_y from screen from screen

I would like to write a special plugin in Vim which open a custom app depending on the positions of the vim cursor. Is any way to get the positions from the screen ? Exemple case: When I call my ...
0
votes
1answer
96 views

How to automate LaTeX to PDF conversion with quickrun.vim [closed]

I want to automatically convert LaTeX to PDF with pdflatex, then open the PDF in Evince using quickrun.vim. I've read the documentation for quickrun.vim, and it seems that I should use a function ...
0
votes
1answer
178 views

Vim tab mapping not working

In my vimrc I have tab mapped to % in visual mode, normal mode, and I think command mode with :map <tab> % "colon necessary so that when I hit tab it acts as %. Everything works fine except ...
0
votes
2answers
70 views

Opening HTML in Vim by Using the Quickrun.vim Plugin

Is anyone using a Vim plugin called QuickRun? With it, you can easily run your current code (in many languages) by typing :QuickRun. But,how can I run HTML code with it? I am using Ubuntu. And I ...
2
votes
1answer
162 views

How do I edit the VIM Omni Completion so that all CSS properties do not end in a colon?

I have been exploring some way in VIM to automatically append closing characters to a line of code. In my case it is CSS. I came across this tip ...
0
votes
2answers
2k views

Vundle for VIM is not working on Ubuntu

I installed Vundle via the instructions given at this blog http://www.charlietanksley.net/philtex/sane-vim-plugin-management/ but when trying to run :BundleInstall I get a VIM error E492: Not an ...
1
vote
2answers
93 views

Can you have different localleaders for different Vim plugins?

I started using a plugin that conflicts with my existing maps, but instead of remapping all of it's maps, I just want to add a prefix. I thought I'd be able to do this with LocalLeader. Vimdoc says: ...
5
votes
2answers
2k views

vim-powerline plugin problems

I'm having problems showing the right fonts or glyphs in my VMWare hosted Ubuntu instance. webkell@ubuntu:~$ uname -a Linux ubuntu 2.6.35-22-generic #35-Ubuntu SMP Sat Oct 16 20:36:48 UTC 2010 i686 ...
6
votes
2answers
1k views

How to uninstall Janus?

I can't figure out how to uninstall Janus. I'd really like to just go back to plain VIM and MacVim. I could try to just remove the ~/.janus directory, but since Janus took a while to install I imagine ...

1 2 3 4