blob: 1cfd7a6d6bc9abbfd907a13995b68ea3db67e805 (
plain)
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
|
# cmp-path
nvim-cmp source for filesystem paths.
# Setup
```lua
require'cmp'.setup {
sources = {
{ name = 'path' }
}
}
```
## Configuration
The below source configuration options are available. To set any of these options, do:
```lua
cmp.setup({
sources = {
{
name = 'path',
option = {
-- Options go into this table
},
},
},
})
```
### trailing_slash (type: boolean)
_Default:_ `false`
Specify if completed directory names should include a trailing slash. Enabling this option makes this source behave like Vim's built-in path completion.
### label_trailing_slash (type: boolean)
_Default:_ `true`
Specify if directory names in the completion menu should include a trailing slash.
### get_cwd (type: function)
_Default:_ returns the current working directory of the current buffer
Specifies the base directory for relative paths.
|