-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(lsp): add configuration change * feat(lsp): add more options - show_symbols: if show Chinese symbols - match_long_input: if show items for long input - match_as_same_as_input: if only show items which match same as input * feat(extension): add more config * fix(extension): use custom server-path first * feat(docs): update README * fix(dict-builder): fix ü to v * chore(package): v0.2.0
- Loading branch information
Showing
11 changed files
with
287 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "coc-ds-pinyin-lsp", | ||
"version": "0.1.2", | ||
"version": "0.2.0", | ||
"description": "pinyin input support for (Neo)vim", | ||
"author": "iamcco <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -61,6 +61,21 @@ | |
"default": true, | ||
"description": "If enable auto completion" | ||
}, | ||
"ds-pinyin-lsp.show_symbols": { | ||
"type": "boolean", | ||
"default": true, | ||
"description": "If show Chinese symbols" | ||
}, | ||
"ds-pinyin-lsp.match_as_same_as_input": { | ||
"type": "boolean", | ||
"default": false, | ||
"description": "If only show the items match the same as input" | ||
}, | ||
"ds-pinyin-lsp.match_long_input": { | ||
"type": "boolean", | ||
"default": true, | ||
"description": "If show items for the long input" | ||
}, | ||
"ds-pinyin-lsp.server_path": { | ||
"type": "string", | ||
"default": "", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.