andre2007

Results 167 comments of andre2007

Also this issue is caused by the calling dub fetch wrongly ``` java.lang.Throwable: error while fetching:Trying to append absolute path. at com.intellij.openapi.diagnostic.Logger.error(Logger.java:123) at io.github.intellij.dlanguage.actions.ProcessDLibs$Companion.getSourcesVirtualFile(ProcessDLibs.kt:268) at io.github.intellij.dlanguage.actions.ProcessDLibs$Companion.createLibraryDependency(ProcessDLibs.kt:181) at io.github.intellij.dlanguage.actions.ProcessDLibs$Companion.processDLibsImpl(ProcessDLibs.kt:139) ``` The...

In general s.th. like ``` val colonIndex = dubPackage.name.indexOf(":") if (colonIndex > -1) { parametersList.addParametersString(dubPackage.name.substring(0, colonIndex)) } else { parametersList.addParametersString(dubPackage.name) } ``` in method getSourcesVirtualFile should be sufficient to solve...

Why does dub run dscanner -- -S works, while dub run dscanner -- -s does not work? In both cases no filename is provided. 

Sorry. With works I meant: the style check produces the expected output. See here for a sample https://github.com/linkrope/dunit/issues/14

I did some more investigations and I found following behavior: The style check which you can call via ``` dscanner -S ``` will find all d source code files within...

PR https://github.com/intellij-dlanguage/intellij-dlanguage/pull/467

@skoppe support for custom unit types was merged. Did you have a chance to look wheter it is useful for you?

I used dustmite to reduce the problem. This is the reduced testcase File app.d ```d struct _GArrowArrayBuilderClass; struct _GArrowBooleanArrayBuilderClass { _GArrowArrayBuilderClass parent_class; } void main(){} ``` It throws the syntax...

@ananis25 Yes, as far as I remember I had to manually adapt a lot of struct definitions from e.g. ```struct​ ​_GArrowArrayBuilderClass​;``` To ```struct​ ​_GArrowArrayBuilderClass{}​;```

You may also test wheter this issue also occurs with Intellij on macOS (gtache LSP plugin). I just wonder wheter it is a DLS issue or a VSC issue. I...