Neil Mitchell

Results 1204 comments of Neil Mitchell

Presumably if you compiled it with the WASM target it should be possible, but I've never done so. If you have instructions it would be great to add them to...

PR #129 gives us an example. Is that enough @pspeter3 - or anything else you were after?

I don't think anyone considered it too carefully. Generally most people will need to build their own LSP to deal with their own Rust builtins. I think we'd probably accept...

We use `jemalloc` explicitly, so the cost of musl and static linking might be lower. But let's see if @alexanderpils can already get it working with the older Ubuntu.

I think this should be less of a big deal with the fix to #423? The problem with checking in a stack.yaml is it regularly gets out of date.

I don't have all the imports available, so can't precisely reproduce this, but with some plausible guesses: * `sa_type: Union[Type[Any], UndefinedType]` * `sa_type=DateTime(timezone=True)` Assuming that `UndefinedType` can't represent anything, and...

Subtract is useful to get around -1 which is both the subtraction section and an Int literal. It's worth having and should match -. For power, I rarely use any...

I agree this is a useful addition. I think people usually do some super unsafe drop stuff which is very unpleasant. I note the name stripPrefix clashes with List, and...

@mb720 I would have thought `Data.List.isPrefixOf (addTrailingPathSeparator dir) file` would do what you are after more easily than the hypothetical `stripPrefix`.