Matus Goljer

Results 723 comments of Matus Goljer

I recommend getting the latest build for your OS from https://github.com/microsoft/sqltoolsservice/releases

This would also be useful in local development where I would for example want to connect to my local database instead of a production one. The same can roughly be...

Another thing is that Weibull distribution with shape = 1 is the same as exponential, but also uses reciprocal "rate" argument (called scale in this package). I don't know if...

The predicates come from the `defclass`. For example ``` (defclass elsa-form-number (elsa-form-atom) ((value :type number :initarg :value))) ``` expands to ``` (progn (defalias 'elsa-form-number-p (eieio-make-class-predicate 'elsa-form-number)) (defalias 'elsa-form-number--eieio-childp (eieio-make-child-predicate 'elsa-form-number))...

The `let` and `let*` forms don't support such syntax. The code you linked is a `when-let*` macro which probably allows it to chain conditions, but in the expansion it's no...

I forgot to add that this is not a model from fable but our own we built in-house (thanks for making fabletools so flexible!). So it's quite buggy, but in...

Great effort and I'm so glad this project is being revived, thanks a lot @yarikoptic ! If you have any questions about what I did, feel free to tag me...

So this error comes from package.el directly and you only re-print it? Would it be possible to add some hint about what to do to make it go away? Similar...

This message is only printed when after the link command though, but then every time I execute anything through eask it complains about the missing autoloads. It should also suggest...

To me, when something starts with "Error" it sounds serious. I myself had no idea that package.el even does this and I've been writing elisp half my life. The help...