Questions tagged [vim-plugin]

The Vim text editor is extensible through plugins, which can be categorized into general utilities, color schemes, file type-specific settings, and syntax definitions.

If your question is not about programming, consider posting Vim related questions at the dedicated Vim Stack Exchange site.

The Vim editor can be extended through plugins, which are (at least partly) implemented in Vimscript.

Plugins may add a new color scheme, syntax highlighting for a new language, or settings and commands specific to a particular file type. But most plugins offer general add-on functionality that either enhance the use (like the various buffer and file explorers), or integrate with related tools (like revision control systems).

The main repository of Vim plugins is at vim.org. There's a prolific community of plugin authors and a wealth of different plugins. Some plugins are only available on sites like Github or Bitbucket.

1236 questions
3
votes
1 answer

Unable to load lua dll with gvim 8 (Windows)

This is with reference to the Vim plugin neocomplete which requires Vim to be compiled with lua. I downloaded the Vim 8.0.0347 official x64 build for windows compiled with lua from here I downloaded the lua53.dll from here and placed the .dll and…
alDiablo
  • 969
  • 7
  • 22
3
votes
1 answer

How to increase the height/size of the results/match window for the vim ctrlp plugin?

With the vim ctrlp (control-p) plugin, when I execute the control+p command to search for files, the window showing the results is at most 10 lines high. How can I make it bigger, and take up my entire window so I can see more results at a time?
Rob Bednark
  • 25,981
  • 23
  • 80
  • 125
3
votes
1 answer

How to set default search as file search for Vim plugin CtrlP?

I'm using CtrlP plugin for my vim for fuzzy file search. I generally work on a large Symfony project & searching is very inefficient & slow but I figured that if I press after it searches by file name than file path which is way faster &…
Rahul Gupta
  • 393
  • 3
  • 18
3
votes
1 answer

How to enable line numbers for the Vim help permanently

I'd like to have line numbers permanently shown in vim, not only for regular text type files rather than for help files too. Adding set number to the main configuration file of vim (~/.vimrc), as it is suggested in vim line numbers - how to have…
Andi Hafner
  • 311
  • 2
  • 9
3
votes
1 answer

How to use Vim surround to surround paragraph on current beginning and ending lines of the paragraph?

I'm using tpope's surround.vim. Example: Apply ysip] to [1 0] [0 1] will yield [ [1 0] [0 1] ] Instead, I'd like to the output to look like [[1 0] [0 1]] I have also tried this surround with all the visual mode variants I can think of…
user5775230
3
votes
1 answer

Vim (python mode) Breakpoint

I use Plugin 'klen/python-mode' in my vim, and work fine but when I want add a break point and run code with python mode, occurs unexpected error, the vim says [Pymode] code running ... and vim is stops, then I must kill the process of vim My…
Milor123
  • 537
  • 4
  • 20
3
votes
2 answers

Similar plugin to Atom's docblockr in vim? (auto document methods)

Is there any plugin for Vim that inserts documentation template for each method when coding like docblockr in Atom? I googled it but results are irrelevant.
ArashM
  • 1,379
  • 13
  • 18
3
votes
1 answer

How to see Rails logs with colors with Vim

I have a Rails application with logs that I used to check with vim. I saw a lot of ugly codes like ^[[1m^[[35m, that I found out it´s ansi color codes. I didn´t want to remove then but use them, so I installed the Charles Campbell AnsiEsc.vim…
Rober
  • 5,868
  • 17
  • 58
  • 110
3
votes
1 answer

Doxygen-style comments in vim using

I am trying out the c.vim plugin. The plug-in works great. But I have a small problem in using Doxygen. What I would like is to generate a doxygen style comments for a function automatically ( as soon as I fill the place holders ). But the latter is…
knightrider
  • 2,063
  • 1
  • 16
  • 29
3
votes
1 answer

Adding Additional Markdown Snippets to Vim Snippets for Use When Editing Markdown Files

I have vim-snippets installed (which, as I understand it, is basically built on top of ultisnips). How do I add a snippet to markdown files (i.e., .md and .markdown files) such that if I type a // followed by a tab it converts it into a
George
  • 6,927
  • 4
  • 34
  • 67
3
votes
2 answers

Ack plugin inside the vim is not working

I'm getting following error inside vim while using Ack plugin: [ No Name] || ack-grep: Command not found. I have installed ack vim-plugin at the path ~/.vim/bundle/ack.vim. I have checked with :scriptnames, it shows me proper path. Added following…
Mandar Pande
  • 12,250
  • 16
  • 45
  • 72
3
votes
3 answers

A python plugin for vim like vim-r-plugin

Being a staunch VIM advocate, and R user, I've grown to really enjoy the vim-tmux interplay in Vim-R-plugin. I've been having trouble finding a python version of this. Do none exist? I've noted a similar question which shows Rstudio equivalents for…
StevieP
  • 1,569
  • 12
  • 23
3
votes
4 answers

How to get add folder to Projects (like Sublime Text) in VIM?

I just switched from Sublime Text to GVIM (on Windows). I am still debating whether I should continue ST or move completely to VIM. One feature that I desperately need (or miss) are Ctrl+P to go to any file that I want in my list of folders.…
NotepadPlusPlus PRO
  • 987
  • 1
  • 8
  • 21
3
votes
1 answer

vimscript detect piped input

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 count piped input as a filename and argc() is…
wmarbut
  • 4,595
  • 7
  • 42
  • 72
3
votes
1 answer

Vim key binding to call function: control+c then 1

I am looking for a way to make a vim binding where I can enter control C (both the control and c keys at the same time), then another option (similar to yy or dd. For example, ctrl+c then 1 would be set so that a function I define, called my func,…
kilojoules
  • 9,768
  • 18
  • 77
  • 149