Chris Morgan
Chris Morgan
`Map` is generic specifically for the `Clone` and concurrency features; the types that are designed to slot in there are `Any`, `Any + Send + Sync`, `CloneAny`, *&c.*, with the...
Closely related is `core::iter::Extend`, which `String` implements for `A = char | Box | String | &char | &str | Cow`.
Thanks for your thoughts; it’s nice interacting with others that care about these topics as well! Localisation is something that we care about, and which will definitely be solved well...
It's worth noting that the Windows 10’s Universal-style apps don’t use menus, do still use the old file dialog (well, Groove does; I’ve also seen third-party apps making their own...
I don’t see why you’d separate this from the rest—it’s a whole bunch of “if you’re doing fancy ARIA stuff, make sure you’re doing it properly” things; people that aren’t...
Sure, this will need to be merged into the existing `syntax/html.vim` from the runtime, but that’s hardly a blocker—just a small task.
I filed this as https://bugs.archlinux.org/task/73982, looks like here’s the right place now, as it affects anyone building from source with up-to-date dependencies. So `%l` (space-padded hour, 1–12; as an aside,...
@davidtheclark Well, here are a bunch of other things I was trying with postcss: postcss: 109 postcss-cssnext: 67 postcss-custom-properties: 3 postcss-at-rules-variables: 2 postcss-conditionals: 21 postcss-clean: 204 autoprefixer: 267 stylelint: 1887...
Putting a bit of instrumentation into `require` I see that the 175 rules, each in their own module/file, consume the largest fraction of the time. I imagine there’s quite a...
Rolling the ~275 files of stylelint into one with rollup.js produced a saving of about one millisecond per file, halving the loading time spent in stylelint. That then leaves stylelint’s...