File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ local function get_target_frameworks(proj_file)
6969
7070 if framework_info .TargetFramework == " " then
7171 local frameworks =
72- vim .split (vim .trim (framework_info .TargetFrameworks or " " ), " ;" , { trimempty = true })
72+ vim .split (vim .trim (framework_info .TargetFrameworks or " " ), " ;" , { trimempty = true })
7373 table.sort (frameworks , function (a , b )
7474 return a > b
7575 end )
@@ -85,9 +85,9 @@ local function get_target_frameworks(proj_file)
8585 nio .scheduler ()
8686 vim .notify (
8787 " Failed to get target framework for "
88- .. proj_file
89- .. " with error: "
90- .. vim .inspect (framework_info ),
88+ .. proj_file
89+ .. " with error: "
90+ .. vim .inspect (framework_info ),
9191 vim .log .levels .ERROR
9292 )
9393
@@ -132,13 +132,13 @@ function M.get_proj_info(path)
132132 file_to_project_map [path ] = proj_file
133133 else
134134 if
135- not vim .iter (project_cache .projects ):any (function (proj )
136- if proj == proj_file then
137- file_to_project_map [path ] = proj_file
138- return true
139- end
140- return false
141- end )
135+ not vim .iter (project_cache .projects ):any (function (proj )
136+ if proj == proj_file then
137+ file_to_project_map [path ] = proj_file
138+ return true
139+ end
140+ return false
141+ end )
142142 then
143143 return nil
144144 end
You can’t perform that action at this time.
0 commit comments