Tim Hutt

Results 319 comments of Tim Hutt

Uhm not sure why the tests are failing and there's no error messages :-/

Yeah I figured that out eventually. IIRC it's the same on Debian based distros too unfortunately. I guess searching for both options might be an option, or using `x86_64-linux-musl-cc` on...

Also I'm not exactly sure what `accept_packed`/`accept_named` are so this might not be right if either of those are disabled.

Good idea! I did think of this but I was hoping my coding skills were so great it would just never crash. Ah well. > (hi from reddit!) Hi :-)

Hmm ok. To be honest the only feature of `codespan` I am using is `range_to_byte_span` (from `codespan_lsp`, it, in order to handle VSCode's incremental text updates for language servers. There's...

Yeah I think so. I just want a trait that has a few things to make dealing with LSP changes easier - i.e. `range_to_byte_span` and so on, but the trait...

Solution is: 1. Edit [`base.html`](https://github.com/tobami/codespeed/blob/master/codespeed/templates/codespeed/base.html) from ``` {% block logo %} {% endblock logo %} {% block page_title %}SPEED CENTER{% endblock page_title %} ``` To ``` {% block logo %}...

It might be worth checking out the [Code Spell Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) extension for VSCode to see how they do it. I installed that after trying this plugin and it had far...

I think "auth" should be in the default exceptions list because it is spelt correctly. This is spell checker, not a variable-naming-best-practices checker. Also it's better that there are a...

@DavidRieman Aside from the fact that abbreviations of words can [also](https://en.wiktionary.org/wiki/auth) [be](https://en.wiktionary.org/wiki/advert) [words](https://en.wiktionary.org/wiki/maths), spell checkers are not "is it a word" checkers. They are intended to find *accidental* misspellings. Should...