Adding a new programming language
So you want cursorless to support a new language? Great! Here's how to do it:
1. Add support to the vscode-parse-tree extension
Cursorless relies on the vscode-parse-tree extension to access the parse tree of a document. See the docs there for how to add support for a new parser
2. Ensure file type is supported by VSCode
If you are adding support for a new language that isn't natively detected by VSCode, you will need to add the appropriate extension to the list of dependencies. The list of languages officially supported by VSCode is listed in the VSCode docs. If your language is in that list, you can skip this step and proceed to step 3. If your language is not in that list, you need to find a VSCode extension that adds support for your language, and add the id of the given extension to packages/common/src/extensionDependencies.ts
and then re-run pnpm init-vscode-sandbox
to ensure it is installed. If you do not do this you will encounter errors when attempting to execute cursorless commands in the next step. See #1895 for more info.
3. Register your language with Cursorless
-
Create a file with your scope support map to indicate which scopes you support. See eg
markdown.ts
. At the start, you can leave the actual scope support table empty, so it will look something like the following (keeping in mind it's best to look atmarkdown.ts
or another support file in case the following snippet rots):import {
LanguageScopeSupportFacetMap,
ScopeSupportFacetLevel,
} from "./scopeSupportFacets.types";
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const { supported, unsupported, notApplicable } = ScopeSupportFacetLevel;
export const markdownScopeSupport: LanguageScopeSupportFacetMap = {}; -
Add an entry pointing to your support table to the global scope support table
-
Create an empty
.scm
file inqueries/
to hold your parse tree patterns. It should be named after your language, egjava.scm
.
You can file a PR with just these changes to get the ball rolling.
4. Define your language's scopes
Follow the instructions in Adding a new scope to define the scopes for your language. Note that you can file a PR for each added scope, or do a couple at a time, but it's best not to do them all at once, as smaller PRs make the review process easier.