Austin Ziegler

Results 171 comments of Austin Ziegler

@danielvy ```javascript const watcher = { buildStart(options) { if (options.watch) { let include = options.watch.extra if (!include) { return } include = Array.isArray(include) ? include : [include] for (const item...

I haven’t set any tests up for CI, but I have used [Vader](https://github.com/junegunn/vader.vim) for some of my internal script functions. There are [examples](https://github.com/junegunn/vader.vim#examples) in the README. June Gunn has tests...

I’m not likely to have time for a while, but I mentioned this in reply to a comment from another watcher.

I am also seeing this. I added a new plugin and its filetypes are not loading. Oddly, this does not affect _every_ filetype. I modified `autoload/polyglot/init.vim` to add some debug...

Another alternative could be https://github.com/hofstadter-io/cue.vim (as it is `hof` that I’m looking at which uses Cue).

I’ve brought the changes in on a branch that will be pushed after 3.0 is released—initial benchmarking looks reasonable, but there’s a lot more allocations in exchange for a lot...

Thanks for the report. I don’t have access to a Windows machine to do this testing on. The implementation of [MIME::Types#type_for](https://github.com/mime-types/ruby-mime-types/blob/master/lib/mime/types.rb#L151-L158) is currently this: ```ruby def type_for(filename) Array(filename).flat_map { |fn|...

Good find. I would happily accept a PR that adds stability to the sort, but I have no time to do this myself.

It’s _supposed_ to be stable.

I'll need to think about this some, and I agree with the concepts.