Ruby support in vim on windows

I am new to vim and would like to configure the command-t plugin to work in vim 7.3. He says he has no ruby ​​support. Is there a way to configure vim to support ruby ​​in Windows 7?

+4
source share
3 answers

I think you need to compile vim with the --enable-rubyinterp .
Check if vim ruby ​​supports using :version in vi.

If this shows -ruby (without ruby ​​support), you will have to compile the vim source code or extract the installer that was compiled in this way.

+3
source

I assume that your problem is that you do not have rubies, and this plugin is needed. Try installing ruby:

http://rubyinstaller.org/

+1
source

You cannot configure vim to support ruby ​​(as when checking boxes or changing options). You need to download the vim distribution with ruby ​​support or download the sources and compile them yourself. A type

 vim --version 

If it says "-ruby", you need to install another version of vim that supports (+ ruby).

You can follow the steps here: My own post or Official installation of the document

0
source

Source: https://habr.com/ru/post/1345363/


All Articles