0.0.3 • Published 3 years ago

coc-glslx v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

coc-glslx

This is a fork from Evanw for support of glslx on coc.nvim

This adds support for the GLSLX shader language to coc.nvim. Features include inline errors, type tooltips, go-to-definition, symbol renaming, and format-on-save. It's open source.

Installation

Right now the plugin is not published on npm, so you need to install the plugin with plugin managers or full url from github.

" Take vim-plug as example
" First install coc.nvim
Plug 'neoclide/coc.nvim'

" Then install coc-glslx
Plug 'Eric-Song-Nop/coc-glslx'
" Or use CocInstall
" :CocInstall coc-glslx

Important Note

You need to register the file as glslx filetype so that the extension will take effect!

You can use my vim-glslx plugin for syntax hilighting and filetype recongization:

Plug 'Eric-Song-Nop/vim-glslx'

Or if you don't want my plugin, you can type the following in vim command line to register a new filetype:

:set filetype=glslx