denite-extra


Ⅰ. 插件描述

extra useful sources for denite.nvim

Ⅱ. 基本信息

创建日期:  2017-02-28
使用用户:  6
Github星:  51
插件作者:  neoclide

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'neoclide/denite-extra-say-im-great'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

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

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'neoclide/denite-extra-say-im-great'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'neoclide/denite-extra-say-im-great'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/neoclide/denite-extra

Ⅳ. 文档说明

# Denite-extra



Some extra sources for denite.nvim.

Related projects:

Install

Take vim-plug for example, add:

Plug 'Shougo/denite.nvim'
Plug 'chemzqm/denite-extra'

To your .vimrc and run PlugInstall and UpdateRemotePlugins after
restarted.

Note: denite.nvim requires python3+
so make sure has('python3') return true, and run:

pip3 install neovim

before you install any neovim remote plugin.

Run :CheckHealth if you get any problem.

Note: tabopen action of this source is for iTerm2 tab, which is Mac only.

Sources

  • session: for manage vim session
  • project: for manage local projects
  • commands: for manage vim commands
  • location_list: for manage vim location list
  • quickfix: for manage vim quickfix list
  • history: for manage vim history

Actions

session

  • load default action
  • delete remove selected session

project

  • open open denite file_rec of selected project
  • tabopen open selected project directory in new iTerm2 tab (Mac only)

commands

  • execute execute selected command
  • edit edit selected command

location_list

Actions of file kind

quickfix

  • cc run :cc command with selected target
  • quickfix create new quickfix list with selected targets

history

  • execute execute selected command/search
  • feedkeys feedkeys to command line

添加新评论