-
Notifications
You must be signed in to change notification settings - Fork 3
/
unite-locate.txt
42 lines (28 loc) · 1.32 KB
/
unite-locate.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
*unite-locate.txt* A Unite.vim plugin to find/open files easily, using
locate command
Author: ujihisa
Licence: GPL-3 or later
==============================================================================
INTRODUCTION *unite-locate-introduction*
*unite-locate* is a Unite.vim plugin to find/open files easily, using locate
command.
Requirement:
- unite.vim
- locate command (Non-Windows) or es command (Windows)
Latest version:
https://github.com/ujihisa/unite-locate
==============================================================================
CUSTOMIZING *unite-locate-customizing*
g:unite_locate_command *g:unite_locate_command*
Specifies an alternative command to lookup files. If you don't give
this value and you have locate command and you are not on Linux, it's
same to have given 'locate -l {count} {query}' as this value. In the
same condition but on Linux, it's 'locate -l {count} -e {query}'. On
Windows it'll be 'es -i -r -n {count} {query}'. {count} means the
number of items to fetch at one time, and {query} is the user input.
On Mac it can be mdfind instead of locate, depending on the system.
locate: for UNIX. mlocate.
mdfind: ???
es: for Windows. voidtools's everything.
==============================================================================
vim:tw=78:fo=tcq2mM:ts=8:ft=help:norl