vim安装command-t插件

网友投稿 989 2022-09-05

vim安装command-t插件

vim安装command-t插件

commnad-t是一个很好的vim插件 安装的步骤似乎很简单,-最新版本的commnad-t,进入到.vim目录 一次执行:

vim command-t-1.4.vba:so %cd ~/.vim/ruby/command-truby extconf.rbmake

但是我这里编译出现了问题 问题一

/usr/include/ruby/intern.h:412:1: error: unknown type name ‘fd_set’DEPRECATED(int rb_thread_select(int, fd_set *, fd_set *, fd_set *, struct timeval *));^make: *** [ext.o] Error 1

问题原因是编译中依赖的一些c库,有问题,在网上查了很多资料,最后升级ruby版本解决

rvm upgrade 1.9.2-p136 1.9.2-p180

问题二

command-t.vim requires Vim to be compiled with Ruby support

通过 vim --version 可以看到 字符串中赫然显示着 -ruby 这说明vim没有ruby的安装依赖

引用

One of my favourite plugins for Vim is Command-T:  an extremely fast, intuitive mechanism for opening files with a minimal number of keystrokes. It’s named “Command-T” because it is inspired by the “Go to File” window bound to Command-T in TextMate.  Sadly, the default installation of Vim on Snow Leopard does not have support for the ruby interpreter compiled in, which is a pre-requisite for using the plugin. Luckily, that’s easy enough to remedy, and in the process we’ll learn a thing or two about compiling your own custom Vim binary.  Let’s start off by getting the source code from the official Mercurial repository:

$ hg clone You don’t need to use the Mercurial repository – there are mirror sources for Subversion, CVS, as well as good ol’ tarballs with patches.)

The default branch for the mercurial repository contains the code for Vim 7.2 at the time of this writing. There is also a vim73 branch available for those feeling a bit more adventurous and wishing to compile the beta release of the next version. For this article, we’ll be sticking to the stable 7.2 release in the default branch.

Now, let’s take a look at the possible configuration options:

$ ./configure --help

There are quite a few, and I suggest that you take the time to read through them – most are quite self-explanatory. For Command-T, the one that we are interested in is the

--enable-rubyinterp

option.

So let’s take a shot at the simplest installation for terminal-based Vim usage, one without the GUI interface and (Linux) mouse daemon support:

$ ./configure --prefix=/my/install/prefix --enable-rubyinterp --enable-gui=no --disable-gpm$ make

After the compilation process finishes (presumably with no errors), the first thing you’ll want to do is ensure that the binary you just built functions as expected:

$ ./src/vim --version | grep ruby# you should see a `+ruby` line entry$ ./src/vim

If you see the +ruby entry in the –version output and the binary launches without any errors, rejoice in your own awesomeness. That’s all there is to it.

If, however, you see something similar to this:

Vim: Caught deadly signal SEGV

Vim: Finished.

zsh: segmentation fault  ./src/vim

you’ve probably fallen prey to a (currently) not very well documented issue: Vim 7.2 does not support the integration of Ruby 1.9.x on Snow Leopard.

This means that if you’ve used a package manager such as Homebrew, MacPorts or Fink (shudder) to install the latest version of Ruby, Vim will link to that latest version instead of the system default installation of ruby 1.8.7.

Let’s fix that.

We’re going to edit the src/auto/config.mk generated by configure that was run earlier. Note that if you re-run configure at a later time, your changes to config.mk will be lost.

Find the lines that look like this:

RUBY            = /usr/local/bin/rubyRUBY_SRC        = if_ruby.cRUBY_OBJ        = objects/if_ruby.oRUBY_PRO        = if_ruby.proRUBY_CFLAGS     = -I/usr/local/Cellar/ruby/1.9.1-p378/include/ruby-1.9.1 -I/usr/local/Cellar/ruby/1.9.1-p378/include/ruby-1.9.1/i386-darwin10.4.0 -DRUBY_VERSION=19RUBY_LIBS       = -lruby -lpthread -ldl -lobjc

(Note: Your specific paths and/or versions may differ depending on the package manager that you are using. The above paths are actually not important, however, since we actually want to reset them to the system defaults.)

and replace them with the following:

RUBY            = /usr/bin/rubyRUBY_SRC        = if_ruby.cRUBY_OBJ        = objects/if_ruby.oRUBY_PRO        = if_ruby.proRUBY_CFLAGS     = -I/System/Library/Frameworks/Ruby.framework/Versions/1.8 -I/usr/lib/ruby/1.8/universal-darwin10.0RUBY_LIBS       = -framework Ruby

Alright, let’s see if this worked.

$ make clean && make

Before we check the binary as we did before, let’s see if we linked to the correct ruby libraries:

$ otool -L src/vimsrc/vim:1.0.0, current version 125.2.0)5.4.dylib (compatibility version 5.4.0, current version 5.4.0)1.8/usr/lib/libruby.1.dylib (compatibility version 1.8.0, current version 1.8.7)1.0.0, current version 44.0.0)150.0.0, current version 550.29.0)

Looking good so far – the binary is linked to the framework version of Ruby that comes as a default on Snow Leopard.

Let’s do a version check:

$ ./src/vim --version | grep ruby# you should see a `+ruby` line entry$ ./src/vim

And voilà: A custom-built Vim with ruby integration that will happily run the Command-T plugin.

All that’s left is to install it:

$ make install

Assuming your PATH is setup to correctly find the new Vim binary, you should be all set.

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Win7 DNS解析不准
下一篇:项目中常用的19条MySQL优化(mysql常见优化方式)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~