-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmp-vlime.txt
73 lines (50 loc) · 2.51 KB
/
cmp-vlime.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
*cmp-vlime.txt* Completion source for Common Lisp using Vlime and nvim-cmp
*cmp-vlime*
____ __ __ ____ __ ___ ~
/ ___| \/ | _ \ \ \ / / (_)_ __ ___ __~
| | | |\/| | |_) |___\ \ / /| | | '_ ` _ \ / _ \~
| |___| | | | __/_____\ V / | | | | | | | | __/~
\____|_| |_|_| \_/ |_|_|_| |_| |_|\___|~
Version 0.5.0
Author: Alejandro "HiPhish" Sanchez
License: MIT License
==============================================================================
TABLE OF CONTENTS *cmp-vlime-contents*
1. Introduction ...................................... |cmp-vlime-intro|
2. Setup ............................................. |cmp-vlime-setup|
3. See also .......................................... |cmp-vlime-seealso|
==============================================================================
INTRODUCTION *cmp-vlime-intro*
This is a completion source for nvim-cmp which uses the Vlime plugin to get
completion candidates from a running Common Lisp image.
==============================================================================
SETUP *cmp-vlime-setup*
This manual assumes that you have nvim-cmp already configured. The source is
automatically registered under the name `vlime`. You have to add it to your
cmp configuration, for example like this:
>
require('cmp').setup.filetype({'lisp'}, {
sources = {
{name = 'vlime'}
}
})
<
See |cmp-config.sources| for more details.
The source will only run if there is an active Vlime connection, so you must
connect to a Swank server first.
Vlime offers both "simple" and "fuzzy" completion. Fuzzy completion provides
better results, but it requires a Swank contrib. See |vlime-completions| for
more information. Whether to use simple or fuzzy completion depends on the
Vlime settings.
==============================================================================
SEE ALSO *cmp-vlime-seealso*
Official nvim-cmp repository:
https://github.com/hrsh7th/nvim-cmp/
Official Vlime repository:
https://github.com/vlime/vlime
nvim-cmp manual:
|nvim-cmp|
Vlime manual:
|vlime.txt|
==============================================================================
vim:tw=78:ts=8:ft=help:norl: