mirror of
https://codeberg.org/FelipeLema/cmp-async-path
synced 2025-05-11 20:29:16 +00:00
45 lines
748 B
Markdown
45 lines
748 B
Markdown
# 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.
|
|
|
|
### get_cwd (type: function)
|
|
|
|
_Default:_ returns the current working directory of the current buffer
|
|
|
|
Specifies the base directory for relative paths.
|