Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlesquembre/coc-conjure
Conjure extension for coc.nvim
https://github.com/jlesquembre/coc-conjure
autocompletion clojure neovim
Last synced: 18 days ago
JSON representation
Conjure extension for coc.nvim
- Host: GitHub
- URL: https://github.com/jlesquembre/coc-conjure
- Owner: jlesquembre
- Created: 2019-04-03T21:51:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-07T09:29:00.000Z (6 months ago)
- Last Synced: 2024-10-19T11:12:34.481Z (30 days ago)
- Topics: autocompletion, clojure, neovim
- Language: JavaScript
- Size: 57.6 KB
- Stars: 33
- Watchers: 4
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# coc-conjure
[Conjure][] completion support for [coc.nvim][].
[![NPM version](https://img.shields.io/npm/v/coc-conjure.svg?style=for-the-badge)](https://www.npmjs.com/package/coc-conjure)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=for-the-badge)](https://github.com/prettier/prettier)## Install
In your `init.nvim`, add it to your list of coc extensions:
```viml
let g:coc_global_extensions = ['coc-conjure']
```Alternatively, in your vim/neovim, run command:
```viml
:CocInstall coc-conjure
```## Development
Link the package to the CoC project:
1. In `coc-conjure` directoy run `npm link`
1. In CoC extensions directory (`~/.config/coc/extensions` by default) run
`npm link "coc-conjure"`.
1. For debugging and auto-reload, add to your `init.vim`:```viml
let g:coc_node_args = ['--nolazy', '--inspect-brk=6045']
let g:coc_watch_extensions = ['coc-conjure']
```1. To see log messages execute: `:CocOpenLog`
For debugging, open `chrome://inspect/` in chrome
[conjure]: https://github.com/Olical/conjure
[coc.nvim]: https://github.com/neoclide/coc.nvim