Skip to content
New issue

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

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

Already on GitHub? # to your account

Support (Neo)Vim by coc.nvim #68

Open
wants to merge 1 commit into
base: master
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
15 changes: 14 additions & 1 deletion client/src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
import * as path from 'path'
//# #if HAVE_VSCODE
import { ExtensionContext, languages, SemanticTokensLegend } from 'vscode'
//# #elif HAVE_COC_NVIM
//# import { ExtensionContext, languages, SemanticTokensLegend } from 'coc.nvim'
//# #define Thenable Promise
//# #endif

import {
LanguageClient,
LanguageClientOptions,
ServerOptions,
TransportKind,
//# #if HAVE_VSCODE
} from 'vscode-languageclient/node'
//# #elif HAVE_COC_NVIM
//# } from 'coc.nvim'
//# #endif
import { SemanticTokensProvider, tokenTypesLegend } from './semanticTokens'

let client: LanguageClient
Expand Down Expand Up @@ -46,9 +55,13 @@ export function activate(context: ExtensionContext) {
client.onReady().then(() => {
context.subscriptions.push(
languages.registerDocumentSemanticTokensProvider(
{ language: 'awk' },
[{ language: 'awk' }],
new SemanticTokensProvider(client),
//# #if HAVE_VSCODE
new SemanticTokensLegend(tokenTypesLegend, []),
//# #elif HAVE_COC_NVIM
//# {tokenTypes: tokenTypesLegend, tokenModifiers: []},
//# #endif
),
)
})
Expand Down
5 changes: 5 additions & 0 deletions client/src/semanticTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ import {
SemanticTokens,
SemanticTokensBuilder,
TextDocument,
//# #if HAVE_VSCODE
} from 'vscode'
import { LanguageClient } from 'vscode-languageclient/node'
//# #elif HAVE_COC_NVIM
//# } from 'coc.nvim'
//# import { LanguageClient } from 'coc.nvim'
//# #endif

const tokenTypes = new Map<string, number>()

Expand Down
3 changes: 3 additions & 0 deletions coc-awk/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/*
!/out/
*.map
20 changes: 20 additions & 0 deletions coc-awk/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# AWK IDE

Ported from [awk-ide-vscode](https://github.com/Beaglefoot/awk-language-server).

## Install

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

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

## Usage

Refer [awk-language-server](https://github.com/Beaglefoot/awk-language-server).
99 changes: 99 additions & 0 deletions coc-awk/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
{
"name": "coc-awk",
"displayName": "AWK IDE",
"description": "coc.nvim client for AWK Language Server",
"author": "Stanislav Chernov <ch-e-st@yandex.ru>",
"license": "MIT",
"version": "0.0.1",
"publisher": "beaglefoot",
"repository": {
"type": "git",
"url": "https://github.com/Beaglefoot/awk-language-server"
},
"icon": "icon/awk_ide_logo.png",
"engines": {
"coc": "^0.0.82"
},
"categories": [
"Programming Languages",
"Formatters"
],
"keywords": [
"coc.nvim",
"awk",
"gawk",
"ide",
"lsp"
],
"activationEvents": [
"onLanguage:awk"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "AWK IDE",
"properties": {
"awk-ide-vscode.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"awk-ide-vscode.indexing": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Turns on/off source files indexing. Requires restart."
}
}
},
"languages": [
{
"id": "awk",
"extensions": [
".awk",
".gawk"
],
"aliases": [
"AWK",
"awk",
"GAWK",
"gawk"
],
"firstLine": "^#!/.*\\bawk*\\b",
"configuration": "./language-configuration.json"
}
],
"configurationDefaults": {
"[awk]": {
"editor.semanticHighlighting.enabled": true
}
},
"grammars": [
{
"language": "awk",
"scopeName": "source.awk",
"path": "./syntaxes/awk.tmGrammar.json"
}
]
},
"scripts": {
"vscode:prepublish": "cd .. && yarn build:client:force",
"patch": "scripts/patch.sh ../client/src/*.ts",
"prepack": "npm run patch && tsc -b tsconfig.json"
},
"dependencies": {
"awk-language-server": "0.10.6"
},
"devDependencies": {
"@types/node": "^22.5.2",
"coc.nvim": "^0.0.83-next.18",
"typescript": "^4.3.2"
}
}
2 changes: 2 additions & 0 deletions coc-awk/scripts/patch.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env -S perl -p
s=//#==;
7 changes: 7 additions & 0 deletions coc-awk/scripts/patch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -e
cd "$(dirname "$(dirname "$(readlink -f "$0")")")"

for file; do
scripts/patch.pl "$file" | cpp -DHAVE_COC_NVIM -xassembler-with-cpp -nostdinc -P -C -o"${file#*/*/}"
done
2 changes: 2 additions & 0 deletions coc-awk/src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/*
!/.gitignore
11 changes: 11 additions & 0 deletions coc-awk/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "out",
"rootDir": "src",
"allowSyntheticDefaultImports": true,
"noImplicitAny": false
},
"include": ["src"],
"exclude": ["node_modules"]
}