Matus Goljer

Results 263 issues of Matus Goljer

It might happen that a private function is not referenced from anywhere inside the package. In which case it's dead code and we should remove it. This will require construction...

enhancement
scope:checks

Since we don't know what is supposed to be evaluated and what not, do not evaluate anything by default. Later we should learn to read the `declare` `debug` form and...

bug
enhancement
scope:analyser

```elisp (let ((a "a")) (eq a a)) ;; => t (let ((a "a") (b "a")) (eq a b)) ;; => nil ``` I can not imagine when the first is...

enhancement
help wanted
scope:checks
good first issue

For example `org-element-at-point` returns a structure which is (symbol plist) and some of the plist properties are known beforehand (`:begin`, `:end`...)

enhancement
help wanted
scope:types

Some methods might always return a non-empty list, then taking something like `car` of it will never return nil.

enhancement
scope:types

If we detect a function that throws in the body and the exception is not handled, we should error.

enhancement

Taking a max of two yearmonths, the smaller (earlier) is returned. ```r > max(yearmonth('2017-01-01'), yearmonth('2018-04-01')) [1] "2017 Jan" ``` However, taking a max of two date objects, the bigger (later)...

bug :bomb:

System users cannot be managed by the existing `elasticstack_elasticsearch_security_user` resource. These users are not editable, except to change their password via the [change password](https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-change-password.html). I think the simplest solution is...

bug
Elasticsearch

Addresses #48 until better parser support is implemented. This is an 80/20 approach so complex expressions inside the `${}` are fontified as if a simple variable token. It probably can...

When both the current and total is set to 0, the division produces a NaN which propagates through min/max operations and can't be used as a boolean condition in an...