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

Rewrite to use remark-language-server #65

Merged
merged 54 commits into from
Jul 13, 2022
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
ecbebd8
Use remark-language-server
remcohaszing Dec 15, 2021
024e7df
Remove console option from launch.json
remcohaszing Dec 27, 2021
28c22b9
Build extension
remcohaszing Dec 27, 2021
1ce06c0
Fix linting issues
remcohaszing Dec 27, 2021
aa29205
Change path to remark-language-server
remcohaszing Dec 27, 2021
6b477e7
Update ignore files
remcohaszing Dec 27, 2021
ff50dce
Rewrite readme
remcohaszing Dec 27, 2021
912c630
Restore remarkConfig in original location
remcohaszing Dec 27, 2021
69a3309
Use ESM for src
remcohaszing Dec 27, 2021
926f5aa
Use code tags to indicate VSCode controls
remcohaszing Dec 27, 2021
6c47159
Apply some small documentation fixes
remcohaszing Dec 27, 2021
93b5db0
Add spacing between <kbd> tags
remcohaszing Dec 27, 2021
e9d80f9
Add `What is this?` section.
remcohaszing Dec 27, 2021
83ceeab
Fix typo
remcohaszing Dec 27, 2021
5d99ed7
Update usage example
remcohaszing Dec 27, 2021
bb8a697
Make remark lower case everywhere
remcohaszing Dec 28, 2021
1222192
Use extension to indicate VSCode extension
remcohaszing Dec 28, 2021
87db4ea
Update readme.md
remcohaszing Dec 28, 2021
68e6d93
Update readme.md
remcohaszing Dec 28, 2021
fbbe709
Update readme.md
remcohaszing Dec 28, 2021
de85fdd
Update readme.md
remcohaszing Dec 28, 2021
e412718
Update readme.md
remcohaszing Dec 28, 2021
56ed73d
Update readme.md
remcohaszing Dec 29, 2021
4c242be
Make remark lowercase in remarkConfig schema
remcohaszing Dec 29, 2021
60eac5e
Add Linting heading
remcohaszing Dec 29, 2021
7a53ab2
Add VS Code version compatibility
remcohaszing Dec 29, 2021
61110fe
Add install section
remcohaszing Dec 29, 2021
3e600b7
Update Install section
remcohaszing Dec 29, 2021
584bce2
Process feedback
remcohaszing Dec 29, 2021
406af3f
Update install instructions
remcohaszing Dec 29, 2021
82375b4
Infer setup to remark-cli
remcohaszing Dec 29, 2021
4ca3fd2
Update readme.md
remcohaszing Dec 29, 2021
7f9111d
Document how to format code
remcohaszing Dec 29, 2021
bd9c5f0
Fix remark lint issue
remcohaszing Dec 29, 2021
855e902
Use replace instead of insert in test
remcohaszing Dec 29, 2021
abb4943
Reject with an error in test runs
remcohaszing Dec 29, 2021
52faf98
Restore expected diagnostic
remcohaszing Dec 29, 2021
5a47b12
Remove syntax section
remcohaszing Dec 30, 2021
982c052
Build extension before debugging
remcohaszing Jan 3, 2022
2f1cb99
Update dependencies
remcohaszing Jan 3, 2022
efc4aad
Update dependencies
remcohaszing Jan 12, 2022
affd708
Update dependencies
remcohaszing Jan 25, 2022
1347a90
Increase sleep in tests
remcohaszing Jan 25, 2022
dbc623a
Increase timeout in test
remcohaszing Jan 26, 2022
be8328f
Remove undefined heading from toc
remcohaszing Jan 26, 2022
bd0aecb
Double sleep to see if it helpsfor windows
remcohaszing Jan 26, 2022
daf9a0d
Switch to node-ipc protocol
remcohaszing Jan 26, 2022
163216a
Increase sleep in test
remcohaszing Jan 26, 2022
341439d
Use context.asAbsolutePath to resolve extension
remcohaszing Jan 27, 2022
0974aa1
Update dependencies
remcohaszing Jul 11, 2022
f4c1f02
Use more stable test
remcohaszing Jul 12, 2022
53e597f
Change language client name and id to remark
remcohaszing Jul 12, 2022
89ea2c2
Fix Windows path issue
remcohaszing Jul 12, 2022
4f83743
Update lockfile
remcohaszing Jul 13, 2022
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
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.md
.vscode-test/
out/
1 change: 0 additions & 1 deletion .remarkignore

This file was deleted.

21 changes: 17 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
{
"version": "0.1.0",
"version": "0.2.0",
wooorm marked this conversation as resolved.
Show resolved Hide resolved
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"stopOnEntry": false,
"outFiles": ["${workspaceRoot}/out"]
"args": [
"${workspaceFolder}/readme.md",
"--extensionDevelopmentPath=${workspaceFolder}"
]
},
{
"name": "Remark language server",
"type": "node",
"request": "attach",
"port": 6009
}
],
"compounds": [
{
"name": "Extension + Language server",
"configurations": ["Launch Extension", "Remark language server"]
}
]
}
19 changes: 9 additions & 10 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
.vscode/**
.vscode-test/**
out/test/**
src/**
.editorconfig
.gitignore
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
.*
.*/
node_modules/
src/
test/
test.js
renovate.json
package-lock.json
tsconfig.json
142 changes: 0 additions & 142 deletions README.md

This file was deleted.

Loading