Mihai Ciuraru

Results 36 comments of Mihai Ciuraru

+1, also interested

sounds reasonable, I'll add a filename modifier option when I get the chance

The issue happens because the plugin remaps the `` key, which is also used as a control character by terminals. For example, `` is being sent as `OB` (this depends...

I can confirm this with HL Alyx as well. It is inaccurate over long periods of play.

Hi, I don't have any experience with Vue, you have a better chance of getting help if you ask this on Stackoverflow. Make sure to better describe your use case...

> Maybe you got a better solution for this problem. Try not to use lambdas constructed from strings, that part of the library is a bit obsolete. var result =...

This is the function used for comparison: ``` compare: function (a, b) { return (a === b) ? 0 : (a > b) ? 1 : -1; } ``` Values...

Not sure yet... `array.sort()` does indeed sort the above values but it does so by converting nulls to strings. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort We can probably do the same for this library using...

Hi Thanks for the suggestion. Unfortunatelly the changes required for this are not trivial, so there's no plans from my side. However I'm open to pull requests, even if they...