Skip to content

eikendev/denite-man

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Usage

The denite-man plugin allows you to fuzzy-search man pages within Neovim or Vim.

Usage examples:

  • :Denite man - get a list of all man pages (and then manually filter for the ones you want to open).
  • :Denite man::2 - get a list of all section 2 man pages.
  • :Denite man:open:2,3 - get a list of all man pages, mentioning 'open' in sections 2 and 3.
  • :Denite man:open::name - get a list of all man pages with 'open' in name, in all sections.

See the docs for full documentation.

denite-man uses the built-in man page viewer of Neovim. You can enable it by adding the following line to your Neovim configuration.

runtime! ftplugin/man.vim

In Vim, the man.vim plugin must be installed.

Installation

The plugin depends on denite by Shougo. You need to install it in order to use this plugin.

Plug

Plug 'Shougo/denite.nvim'
Plug 'eikendev/denite-man'

Vundle

Plugin 'Shougo/denite.nvim'
Plugin 'eikendev/denite-man'

NeoBundle

NeoBundle 'Shougo/denite.nvim'
NeoBundle 'eikendev/denite-man'