This repository was archived by the owner on Jun 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2.4.3
4+ * Hotfix release: fixes autocompletion
5+
36## 2.4.2
7+ * Broken release*
48* Dummy module did always precede real ones leading to bad completion behavior
59
610## 2.4.1
Original file line number Diff line number Diff line change 88 "url" : " https://github.com/vknabel"
99 },
1010 "license" : " Apache-2.0" ,
11- "version" : " 2.4.2 " ,
11+ "version" : " 2.4.3 " ,
1212 "publisher" : " vknabel" ,
1313 "icon" : " icons/icon.png" ,
1414 "galleryBanner" : {
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ function gatherAllSwiftFilesInPath(root: string): string[] {
9494export function getAllSourcePaths ( srcPath : string ) : string [ ] {
9595 const sp = path . dirname ( srcPath )
9696 for ( let [ moduleName , modulePath ] of allModulePaths ) {
97- if ( moduleName != null && path . normalize ( modulePath ) === path . normalize ( sp ) ) {
97+ if ( moduleName != null && path . normalize ( sp ) . includes ( path . normalize ( modulePath ) ) ) {
9898 let ss = allModuleSources . get ( moduleName )
9999 // trace("**getAllDocumentPaths** ", Array.from(ss).join(","))
100100 return Array . from ( ss )
You can’t perform that action at this time.
0 commit comments