Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hrsh7th/cmp-nvim-lsp-signature-help
cmp-nvim-lsp-signature-help
https://github.com/hrsh7th/cmp-nvim-lsp-signature-help
nvim-cmp
Last synced: 4 days ago
JSON representation
cmp-nvim-lsp-signature-help
- Host: GitHub
- URL: https://github.com/hrsh7th/cmp-nvim-lsp-signature-help
- Owner: hrsh7th
- Created: 2021-11-19T13:06:51.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-30T21:33:26.000Z (5 months ago)
- Last Synced: 2024-11-09T05:13:37.609Z (11 days ago)
- Topics: nvim-cmp
- Language: Lua
- Homepage:
- Size: 14.6 KB
- Stars: 630
- Watchers: 7
- Forks: 27
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cmp-nvim-lsp-signature-help
nvim-cmp source for displaying function signatures with the current parameter emphasized:
![Basic Example](https://user-images.githubusercontent.com/12832280/144246351-0604d8cb-40c5-437b-9ca1-f3d420539360.png)
# Setup```lua
require'cmp'.setup {
sources = {
{ name = 'nvim_lsp_signature_help' }
}
}
```