Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
5249da9
get repo ready for swift support dev
rinOfTheStars Aug 9, 2026
607252b
scm p1
rinOfTheStars Aug 14, 2026
98e7106
scm p2; added rust and java playgrounds for behavior reference
rinOfTheStars Aug 15, 2026
29bc9c7
start filling out swift.ts with notApplicable and unsupported facet e…
rinOfTheStars Aug 20, 2026
4d292c5
got all but three required tests generating
rinOfTheStars Aug 22, 2026
0f58863
Merge branch 'cursorless-dev:main' into swift-support
rinOfTheStars Aug 22, 2026
8fd4fa6
i have no idea what's happening here ngl
rinOfTheStars Aug 22, 2026
f6c012b
Merge branch 'swift-support' of https://github.com/rinOfTheStars/curs…
rinOfTheStars Aug 22, 2026
3d3b00b
pnpm fix again
rinOfTheStars Aug 23, 2026
259b3df
run precommit
rinOfTheStars Aug 23, 2026
56549bb
Added for each loop; some if-else tests continue to fail to generate …
rinOfTheStars Aug 24, 2026
0046fc6
Merge branch 'main' into swift-support
rinOfTheStars Aug 24, 2026
3230702
Not really sure why this works, but it seemingly does now!
rinOfTheStars Aug 24, 2026
434d12f
Merge branch 'swift-support' of https://github.com/rinOfTheStars/curs…
rinOfTheStars Aug 24, 2026
051b50d
remove the buggy takeEach.yml copies
rinOfTheStars Aug 24, 2026
bd2a1fd
improve scope support correctness, add multiline string and comment s…
rinOfTheStars Aug 25, 2026
df9c996
add query predicate for checking ancestors, more swift support work
rinOfTheStars Aug 26, 2026
792f019
partial revert of previous commit
rinOfTheStars Aug 28, 2026
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