Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hrsh7th/cmp-path
nvim-cmp source for path
https://github.com/hrsh7th/cmp-path
nvim-cmp
Last synced: 5 days ago
JSON representation
nvim-cmp source for path
- Host: GitHub
- URL: https://github.com/hrsh7th/cmp-path
- Owner: hrsh7th
- License: mit
- Created: 2021-08-03T14:50:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-05T09:42:46.000Z (11 months ago)
- Last Synced: 2024-11-07T10:42:29.288Z (6 days ago)
- Topics: nvim-cmp
- Language: Lua
- Homepage:
- Size: 41 KB
- Stars: 626
- Watchers: 11
- Forks: 61
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.