@yaegassy/coc-marksman 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -19
- package/lib/index.js +2 -3
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -10,29 +10,11 @@ See the [project page](https://github.com/artempyanykh/marksman) for more detail
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
|
-
**CocInstall**:
|
|
14
|
-
|
|
15
|
-
> scoped packages
|
|
16
|
-
|
|
17
13
|
```vim
|
|
18
14
|
:CocInstall @yaegassy/coc-marksman
|
|
19
15
|
```
|
|
20
16
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
```vim
|
|
24
|
-
Plug 'yaegassy/coc-marksman', {'do': 'yarn install --frozen-lockfile'}
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
## Note
|
|
28
|
-
|
|
29
|
-
1. **Get `marksman` server binary**.
|
|
30
|
-
The extension will try to automatically download Marksman language server
|
|
31
|
-
from GH releases. This is the easiest way to get started.
|
|
32
|
-
|
|
33
|
-
An alternative is to either download `marksman` binary from the [releases page][mn-releases] or to build `marksman` from source. Put it somewhere in your `PATH` and you should be good to go.
|
|
34
|
-
2. **Add `.marksman.toml` to your workspace root folder**.
|
|
35
|
-
The extension is automatically activated only when `.marksman.toml` file is present. This is done to avoid running Zeta Note on random Markdown files, but rather only inside your notes folder.
|
|
17
|
+
> scoped packages
|
|
36
18
|
|
|
37
19
|
## Configuration options
|
|
38
20
|
|
package/lib/index.js
CHANGED
|
@@ -3099,7 +3099,7 @@ var import_stream2 = __toESM(require("stream"));
|
|
|
3099
3099
|
var import_util = require("util");
|
|
3100
3100
|
|
|
3101
3101
|
// package.json
|
|
3102
|
-
var marksmanBinVersion = "2022-
|
|
3102
|
+
var marksmanBinVersion = "2022-11-25";
|
|
3103
3103
|
|
|
3104
3104
|
// src/constant.ts
|
|
3105
3105
|
var MARKSMAN_BIN_VERSION = marksmanBinVersion;
|
|
@@ -3116,8 +3116,7 @@ var releaseBaseUrl = "https://github.com/artempyanykh/marksman/releases/download
|
|
|
3116
3116
|
var statusNotificationType = new import_coc.NotificationType("marksman/status");
|
|
3117
3117
|
var ExperimentalFeatures = class {
|
|
3118
3118
|
fillClientCapabilities(capabilities) {
|
|
3119
|
-
|
|
3120
|
-
const experimental = (_a = capabilities.experimental) != null ? _a : {};
|
|
3119
|
+
const experimental = capabilities.experimental ?? {};
|
|
3121
3120
|
experimental.codeLensShowReferences = true;
|
|
3122
3121
|
experimental.followLinks = true;
|
|
3123
3122
|
experimental.statusNotification = true;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yaegassy/coc-marksman",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"marksmanBinVersion": "2022-
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"marksmanBinVersion": "2022-11-25",
|
|
5
5
|
"description": "Marksman (Markdown LSP server) extension for coc.nvim",
|
|
6
6
|
"author": "yaegassy <yosstools@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -44,19 +44,19 @@
|
|
|
44
44
|
"semi": true
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@types/node": "^16.
|
|
47
|
+
"@types/node": "^16.18.3",
|
|
48
48
|
"@types/node-fetch": "^2.5.8",
|
|
49
49
|
"@types/which": "^2.0.1",
|
|
50
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
51
|
-
"@typescript-eslint/parser": "^5.
|
|
52
|
-
"coc.nvim": "^0.0.
|
|
53
|
-
"esbuild": "^0.15.
|
|
54
|
-
"eslint": "^8.
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
51
|
+
"@typescript-eslint/parser": "^5.44.0",
|
|
52
|
+
"coc.nvim": "^0.0.82",
|
|
53
|
+
"esbuild": "^0.15.16",
|
|
54
|
+
"eslint": "^8.28.0",
|
|
55
55
|
"eslint-config-prettier": "^8.5.0",
|
|
56
56
|
"eslint-plugin-prettier": "^4.2.1",
|
|
57
|
-
"prettier": "^2.
|
|
57
|
+
"prettier": "^2.8.0",
|
|
58
58
|
"rimraf": "^3.0.2",
|
|
59
|
-
"typescript": "^4.
|
|
59
|
+
"typescript": "^4.9.3"
|
|
60
60
|
},
|
|
61
61
|
"activationEvents": [
|
|
62
62
|
"onLanguage:markdown",
|