HuskyNator

Results 28 issues of HuskyNator

Is it possible to make use the nuget package given by using `add package glfw-net`, instead of using the source code directly, even as submodule? Whenever I try, I receive...

# `If` statements & 'implicit' explicit casts This issue mostly pertains to 'implicit' casts in `if` statements though it is not limited to this domain. *_To double check the behavior...

enhancement
static analysis
new check proposal

Requested enhancement to add the option of keeping single-line functions on one line. This is a feature in many other formatting tools & can improve readability when many tiny functions...

When a foreach loop with a range, the syntax highlighting also highlights the second dot. (May be related to #410, though likely not) This does not happen when used as...

bug
syntax highlighting

As a small enhancement request, The insertion of `///`/`*`/`+` in respective comment blocks on pressing enter would make comments much less tedious. This is comparable to the same feature in...

enhancement

When using an `in` contract for a function, the expression inside the parentheses is not highlighted _if_ it is on the same line as the `{` bracket. When it's on...

syntax highlighting

When using a hyperlink starting with `http:`/`https:`, it is incorrectly regarded as a [field ](https://dlang.org/spec/ddoc.html#sections). ```d module app; import std.stdio; /** * http://nu.nl */ void main(){ writeln("Test"); } ``` ![image](https://user-images.githubusercontent.com/17416803/164513285-808bcdf8-66a9-42bd-9cff-e7c91e723e22.png)...

bug

When using an alias to define for example an array or an associative array, hints are not provided when the type of this array is aliased. ```d module app; import...

bug

Example code: ``` module app; struct A{ int a; union{ int b; int c; } } void main(string[] args) { //A a = A() } ``` Writing the `A(` part...

bug

Currently, there are no hints when using [the static initialisation syntax for structs & unions](https://docarchives.dlang.io/v2.076.0/spec/struct.html#static_struct_init). I'd like to request for hints with regards to the elements of structs/unions, in a...

enhancement