Investigate.vim


Ⅰ. 插件描述

A Vim plugin for looking up documentation

Ⅱ. 基本信息

创建日期:  2013-11-12
使用用户:  127
Github星:  275
插件作者:  Keith Smiley

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'keith/investigate-vim'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'keith/investigate-vim'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'keith/investigate-vim'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/keith/investigate.vim

Ⅳ. 文档说明

# investigate.vim

A plugin for looking documentation on the word under the cursor.
You can choose to open it in a browser, with
Dash on OS X, or with an arbitrary
shell command.

Example

Web

Setup

By default investigate is mapped to gK. If you want to set up your
own mapping you should use something like this:

nnoremap <leader>K :call investigate#Investigate('n')<CR>
vnoremap <leader>K :call investigate#Investigate('v')<CR>

With this mapping, using <leader>K when your cursor is on a specific
word will open its documentation. The [help
file](https://github.com/keith/investigate.vim/blob/master/doc/investigate.txt)
has tons of documentation on configuration. Here are some of the
basic options.

Configuration

Dash

If you want to open everything in Dash you need to set:

let g:investigate_use_dash=1

This value is ignored unless you're on OS X. If you want to use Dash
conditionally based off the current filetype you can set something like:

let g:investigate_use_dash_for_ruby=1

If you want to use something else, like a URL for a single type you'd
want to use this which will override the global Dash setting:

let g:investigate_use_url_for_ruby=1

If you want to use a different keyword in Dash for a given language you
can set it by using:

let g:investigate_dash_for_ruby="rails"

This would set all Ruby files to open in the Rails documentation.
Note: If you're using a Dash 1.9.3 or newer you don't have to set this
for docsets that you have renamed.

URLs

If you don't like the website I chose as the default for a filetype you
can redefine it with:

let g:investigate_url_for_ruby="http://ruby-doc.com/search.html?q=^s"

Where ^s will be replaced with the word under the cursor for Ruby
files.

Custom Commands

You can also open documentation with arbitrary shell commands. See
investigate-writing-commands in the documentation for more info.

Project specific settings

You can setup project specific settings with an .invrc file from the
directory you launch Vim in. For example for a Rails project you may
want to set Ruby files to open Rails documentation for that single
project but not other Ruby gem based projects you're working on. To do
that the file would look something like this:

[syntax]
ruby=rails

This will set a syntax variable:

let g:investigate_syntax_for_ruby=rails

Which entirely changes Ruby files to open in the Rails documentation.
See investigate-conf-file for more information.

If you don't have a preferred installation method check out
vim-plug

Development

If you find any bugs, want any languages added, or want any default
language settings changed, please submit an
issue.

添加新评论