vim-plugin Questions
5
Solved
After a lot of writing in Q10 on Windows, I got used to the typewriter sound it makes every time you press a key. At least for me it feels great to have this sort of sound feedback.
On Linux on th...
Teenateenage asked 11/12, 2010 at 18:57
2
Solved
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 Vi...
Emad asked 23/4, 2013 at 16:29
2
Solved
I am desperately trying to get YouCompletMe working on windows, the author clearly says that there is no official support for windows so that's fair enough. Though there is a wiki to build it on wi...
Intercession asked 9/9, 2013 at 7:39
19
Pathogen does not work for me. I am following Adam Lowe's hints posted here (and few more) without any success...
My vimrc:
filetype off
call pathogen#runtime_append_all_bundles()
filetype plugin ...
Humbug asked 1/8, 2010 at 19:49
1
Solved
I want do something like this:
check if a split named __Potion_Bytecode__ exists
if exists, switch to the split with name
if not, new a split named __Potion_Bytecode__
Here is code I am now doi...
Gilbertegilbertian asked 16/2, 2016 at 8:54
2
Solved
In Vim 7.4 there's a default plugin called "LogiPat". A command this plugin exposes is :ELP, which is shadowing another command I use a lot :Explore. For that last command I always use :E but since...
Fucoid asked 29/7, 2015 at 8:42
6
Solved
Is there any WORKING plugin for Vim 7.4 that would automatically close brackets ('{}', '[]', '()') and maybe insert some carriage returns (for '{}' at least)?
I know this question has been a...
Nammu asked 23/1, 2014 at 18:42
3
Solved
I've just installed vim-rmarkdown, vim-pandoc, and vim-pandoc-syntax plugins in conjunction with Vundle (latest github versions).
When I open an RMarkdown file (.Rmd) in vim, as expected it detect...
Gifford asked 16/12, 2015 at 14:10
1
Solved
To autocomplete by pressing enter, I have the following map setup to work with neocomplete.vim:
inoremap <silent> <CR> <C-r>=<SID>my_cr_function()<CR>
function! s:my_...
Tryck asked 28/12, 2015 at 2:55
4
Solved
I have found a couple of Vim plugin for Eclipse, but some computers have performance issues with Eclipse.
So, what I want to know if there is any plugin for the Netbeans IDE, which runs smoo...
Surrey asked 6/9, 2012 at 19:12
4
Solved
I have read through the docs but cannot figure out if this is possible.
I want to keep the default setting of g:ctrlp_working_path_mode = 2, but I want the ability to manually override that for al...
Elsi asked 8/8, 2012 at 21:51
1
Solved
I am trying to find a function which will switch back to the original window in a split view for vim. I know about shortcut and I also know about the function :call cursor. But is there a function ...
Nne asked 26/9, 2015 at 21:21
3
Solved
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...
Liebermann asked 9/3, 2013 at 9:33
2
Within a vim script it is possible to embed some python code, as long as vim is built with the +python feature.
function! IcecreamInitialize()
python << EOF
class StrawberryIcecream:
def __...
Augmentative asked 19/6, 2015 at 17:49
1
Solved
It is easy to use vimscript to determine if a filename was specified to vim by using argc(). Is there a way to determine if the - flag was given to specify piped input was given to vim? It doesn't ...
Prickly asked 21/7, 2015 at 19:42
3
I have content stored in a variable (out) which I want to replace with the current buffer. I'm currently doing it like this (simplified version):
let splitted = split(out, '\n')
if line('$') > ...
Octarchy asked 11/7, 2015 at 11:20
3
Solved
What is the preferable, general method of debugging/tracing vim plugins ? Suppose I have got a fairly sophisticated plugin Foo, which on a key pressed F9 opens new window with file-browser and give...
Shine asked 11/3, 2012 at 15:51
1
I have Python 2.7 and Python 3.3 in my Debian. I rebuilt both using the arg --enable-shared.
After than I built VIM 7.4 using the args " --enable-pythoninterp --enable-python3interp --with-feature...
Pouter asked 20/11, 2013 at 19:12
2
I installed You Complete Me with the help of Vundle in vim. The first time I used it, the suggested words were completely unreadable. They had a dark purple background and a black font color. Then ...
Liquidize asked 14/4, 2015 at 13:25
1
Solved
I am just getting started with Vim and setting up the environment with some of the plugins recommended by http://vimawesome.com/. I downloaded and placed plug.vim in C:\Program Files\Vim\vim74\auto...
Sphenogram asked 23/4, 2015 at 11:7
2
Solved
In Vim, if I issue a jump command, e.g. G, then I can put the cursor back where it was before the jump by using Ctrl-o. However, Ctrl-o would not put my cursor back to the previous spot if I issued...
Isooctane asked 20/4, 2015 at 11:20
2
Solved
I've installed bling/vim-airline hoping I could have that cool branch name in my status bar.
I followed the instructions on airline's repo and installed tpope/vim-fugitive.
But after downloading...
Excavator asked 26/2, 2015 at 2:15
3
Solved
I'm trying to install NERDTree (the Vim plugin) on Windows 7. I created a .vim directory on my user folder (C:/Users/Username) and extracted the plugin there. I've run :helptags ~.vim\doc and :help...
Sparhawk asked 7/12, 2010 at 15:48
0
I am using YouCompleteMe on MacVim (vim 7.4 on OSX 10.9.4) for Python code auto-completion.
YCM works perfectly when referencing Python built-in functionality (like os.* stuff), but it doesn't see...
Beuthen asked 5/2, 2015 at 9:7
1
Solved
After installing Ag.vim I've had a frequent need to copy a search from * or / into the command line to search across all files in a codebase.
Example use case:
I find a string of text user_profi...
Glassy asked 15/1, 2015 at 17:42
© 2022 - 2024 — McMap. All rights reserved.