Francisco

Results 31 comments of Francisco

My issue was to argue that from my perspective this was a silent error where some information is thrown away. I understand that raising an error now would break compatibility...

The implementation would be like this: ``` javascript options.cloneTypeMismatch = option.cloneTypeMismatch || (_target, source, options) => cloneUnlessOtherwiseSpecified(source,options) if (!sourceAndTargetTypesMatch) { return option.cloneTypeMismatch(target, source, options) } ``` If you meant which...

Thanks! I did not realize it was so easy to create a custom merge that could forward calls to the *default* Having that I can always use my own wrapper...

At least you should try adding `ActiveModel::Model` to have a set a basic Rails conventions. However, although I get it to render without errors, it shows up only in read-only...

Sadly I am not sure how they do it, but since it is not mentioned here, it might be worth knowing that DaisyUI does exactly this. They even support the...

Recently I started to use a laptop with Linux and I am desperately looking for a way to enable clickable file paths. However after going through some linux terminals (all...

Just came here wondering if the library was dropped because of how broken the type definitions are. I believe it would be much better to ship without types (just delete...

Good point, I am totally against modifying the existing behavior for the `:cs` command. I should have requested for a new command name for it. And although the **automatic** detection...

I never found a good solution, but I wrote a small function to perform my most common substitutions, so I can quickly replace natural opposites. ``` function! MySurround() let word_under_cursor...