Brian Schott

Results 76 comments of Brian Schott

I just tried the following on my Windows 10 install: ``` PS C:\Users\Brian\source\repos> git clone --recursive https://github.com/dlang-community/D-Scanner.git PS C:\Users\Brian\source\repos> cd .\D-Scanner\ PS C:\Users\Brian\source\repos\D-Scanner> .\build.bat ``` It worked just fine. Are...

"clever error recovery" sounds uncomfortably similar to "sufficiently smart compiler".

Did that change break any of the other tests? I don't see much of a problem with it, but we could end up tweaking the weight calculation forever.

I still want to add this feature, but I need to figure out how to implement it without generating false positives.

The reference plugin is located here: https://github.com/Hackerpilot/textadept-d.

The problem here is that the decision about inserting the newline is made when the formatter is looking at the `[` token. The whitespace before the `//dfmt off` comment is...

It's a reasonable thing to want, but I'm afraid of what the heuristic will look like to solve it.

Ha. I actually wish the language had gone the other way and made `=` always return void for everything.

DCD's lexer only supports UTF-8 and doesn't do any character width calculations. It also doesn't care or need to know if the user set the tab character to be equal...

Giving answers in line:column has the same problems as completion requests: Editors often track column numbers in multiples of displayed character width. For example, Scintilla tracks multi-byte characters and tab...