This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
denite-man.txt
50 lines (36 loc) · 2.03 KB
/
denite-man.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
*denite-man.txt* Man page source for Denite.
Version: 0.0.2
Author: eikendev
License: MIT
===============================================================================
CONTENTS *denite-man-contents*
Introduction |denite-man-introduction|
Source Usage |denite-man-source-usage|
===============================================================================
INTRODUCTION *denite-man-introduction*
The *denite-man* plugin allows you to fuzzy-search man pages within Neovim/Vim.
It introduces the 'man' *denite* source which can be used with `:Denite` (or other
denite commands) to get a list of all/filtered man pages from all/specific
sections.
In order to use this plugin, you need to setup *Denite* first.
The *man.vim* plugin is required for Vim (is installed by default in Neovim).
===============================================================================
SOURCE USAGE *denite-man-source-usage*
man List all man pages or man pages filtered according to page
name/description keyword, from all or specific sections.
Source arguments (delimited by ':')
0. filter keyword - a regex string (empty - for no filtering)
1. sections - comma-separated list of sections (empty - all)
2. filtering type: 'desc' - by description (default)
'name' - by name
Denite input pattern may also be specified as filter keyword, takes
precedence over the arg. 0
Examples:
`:Denite man:open` - man pages, mentioning 'open'
`:Denite man -input=open` - same as above
`:Denite man:open:2,3` - man pages, mentioning 'open' in sections 2 and 3
`:Denite man:open:3:name` - man pages with 'open' in name, in section 3
`:Denite man:open::name` - man pages with 'open' in name, in all sections
`:Denite man::2` - all section 2 man pages
===============================================================================
vim:tw=78:ts=8:ft=help:norl: