Skip to content

Commit cd7840c

Browse files
authored
Indexing for Simpler Projects (#161)
1 parent 1962aab commit cd7840c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CodeiumVS/LanguageServer/LanguageServer.cs

+5
Original file line numberDiff line numberDiff line change
@@ -870,6 +870,11 @@ async Task AddFilesToIndexLists(EnvDTE.Project project)
870870
}
871871
}
872872

873+
if (commonDirs.Count() == 0)
874+
{
875+
commonDirs = new[] { projectDir };
876+
}
877+
873878
await _package.LogAsync($"Found set-covering directories for {projectName}: {commonDirs.Count()}");
874879
foreach (var dir in commonDirs)
875880
{

CodeiumVS/source.extension.vsixmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="Codeium.VisualStudio" Version="1.8.99" Language="en-US" Publisher="Codeium" />
4+
<Identity Id="Codeium.VisualStudio" Version="1.9.0" Language="en-US" Publisher="Codeium" />
55
<DisplayName>Codeium</DisplayName>
66
<Description xml:space="preserve">The modern coding superpower: free AI code acceleration plugin for your favorite languages. Type less. Code more. Ship faster.</Description>
77
<MoreInfo>https://www.codeium.com</MoreInfo>

0 commit comments

Comments
 (0)