Robin Munn
Robin Munn
The comment in https://github.com/dotnet/docs/pull/19794#issuecomment-668619665, which talks about some editors improperly loading UTF-8 files as the default local encoding (often Latin-1 for English speakers) was written in 2020. Now, in 2024,...
@Jermolene [Turkish is particularly complicated](http://www.i18nguy.com/unicode/turkish-i18n.html) to get case-insensitivity right for, for the reasons mentioned in the linked article. A lot of code out there, including Javascript regular expressions, assumes that...
@Jermolene https://github.com/arty-name/locale-index-of might work: it's got zero dependencies (it uses [Intl.Collator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator) which should be in every browser, including IE 11 if we still care about IE). The license is [ISC](https://en.wikipedia.org/wiki/ISC_license),...
As a side note, in normal mode (probably others too, have only verified normal mode so far) you can get a list of all available normal mode keystrokes by pressing...
There's also the `?` (space bar then question mark if you haven't remapped your `` key to something other than the default space bar) combination. It gives you a list...
I actually want the "opposite" feature, which would be the ability to load from an arbitrary file. The other day I ran `eslint . > lint-results.txt` at the commandline, outside...
Not stale. It's a feature request! Feature requests should never be marked as stale, IMHO. **Edit:** Correction. Feature requests should never be _automatically_ marked as stale due to lack of...
@folke - I understand why overworked maintainers use stalebots to keep their issues trimmed down to a manageable number. But it would be nice if the stalebot was set to...
> I don't believe changes such as the above is enough to fix things, it only hides the errors. I wasn't aware distributions would immediately pull a new major version...
#7677 is one issue that could be easily fixed if we used ES2020 as a baseline supported Javascript version. There are lots of places in the code that convert `undefined`...