0.1.0 • Published 3 years ago
coc-camel v0.1.0
coc-camel
An extension for coc.nvim to enable Apache Camel language server support.
Quick Start
- Download and install a recent Java Development Kit
- Install this extension by adding this following lines to your
~/.vimrcor~/.config/nvim/init.vim, Assuming you are a vim-plug user
" Initialize plugin system
"
call plug#begin()
" Shorthand notation; fetches https://github.com/neoclide/coc.nvim
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Shorthand notation; fetches Camel Ls
Plug 'camel-tooling/coc-camel', {'do': 'yarn install --frozen-lockfile && yarn build'}
call plug#end()OR you can use CocInstall to install Camel Language Server.
CocInstall coc-camelCamel LS Demo
For instance, code completion for XML with Camel DSL. The capabilities are based on the Camel Language Server.

For instance, code completion for JAVA with Camel DSL. The capabilities are based on the Camel Language Server.

How to contribute
To build local development environment please run these commands at the project root.
yarnLicense
Apache License
This extension is built with create-coc-extension