Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support (Neo)Vim by coc.nvim #272

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/out
/node_modules
out
node_modules
package-lock.json
/testproj
.vscode
Expand Down
3 changes: 3 additions & 0 deletions coc-meson/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/*
!/out/
*.map
26 changes: 26 additions & 0 deletions coc-meson/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Meson for Visual Studio Code

Ported from [vscode-meson](https://github.com/deribaucourt/vscode-meson).

Because some APIs of [vscode](github.com/microsoft/vscode) are missing in
[coc.nvim](https://github.com/neoclide/coc.nvim), disable some features
temporarily:

- tasks: miss `vscode.task`

## Install

- [coc-marketplace](https://github.com/fannheyward/coc-marketplace)
- [npm](https://www.npmjs.com/package/coc-meson)
- vim:

```vim
" command line
CocInstall coc-meson
" or add the following code to your vimrc
let g:coc_global_extensions = ['coc-meson', 'other coc-plugins']
```

## Usage

Refer [vscode-meson](https://github.com/deribaucourt/vscode-meson).
Loading