Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ node_modules/
*.vsix
.DS_Store
.luacheckcache

# Swift Test Project
/resources/playground/swift/cursorless-test-project/.build
5 changes: 5 additions & 0 deletions packages/app-web-docs/src/docs/user/languages/swift.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Language } from "./components/Language";

# Swift

<Language languageId="swift" />
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import { scalaScopeSupport } from "./scala";
import { scmScopeSupport } from "./scm";
import type { LanguageScopeSupportFacetMap } from "./scopeSupportFacets.types";
import { scssScopeSupport } from "./scss";
import { swiftScopeSupport } from "./swift";
import { talonScopeSupport } from "./talon";
import { talonListScopeSupport } from "./talonList";
import { typescriptScopeSupport } from "./typescript";
Expand Down Expand Up @@ -64,6 +65,7 @@ export const languageScopeSupport: StringRecord<LanguageScopeSupportFacetMap> =
scala: scalaScopeSupport,
scm: scmScopeSupport,
scss: scssScopeSupport,
swift: swiftScopeSupport,
"talon-list": talonListScopeSupport,
talon: talonScopeSupport,
typescript: typescriptScopeSupport,
Expand Down
Loading
Loading