Replies: 1 comment 4 replies
-
This functionality isn’t related to the These functionalities are likely unrelated to import {createUnifiedLanguageServer} from 'unified-language-server'
createUnifiedLanguageServer({
ignoreName: '.remarkignore',
packageField: 'remarkConfig',
pluginPrefix: 'remark',
processorName: 'remark',
processorSpecifier: 'remark',
rcName: '.remarkrc',
enhance(connection, textDocuments, processor) {
connection.on/* some event */((event) => {
// handle it
})
}
}) I’m not sure about this specific functionality though. VS Code already provides it. This means the functionality would be duplicated for VS Code users, but I do see why this is useful for other editors. |
Beta Was this translation helpful? Give feedback.
-
Latest code insiders has autosuggestions for markdown.
Seems to have:
Wondering if this is possible and wanted in remark-language-server. AFAIK this is a bit different, as normally the language server just takes your remark config, it doesn't determine in itself what to lint/do. But I can imagine this would require (opinionated) plugins to be baked into the language server to understand enough to give suggestions, and crawling the file system.
Does this make sense to implement?
cc @remcohaszing
Beta Was this translation helpful? Give feedback.
All reactions