Matus Goljer
Matus Goljer
- [ ] elsa-form-map - [ ] elsa-form-foreach - [ ] elsa-form-visit - [ ] elsa-form-to-lisp ?? - [ ] elsa-car - [ ] elsa-cdr - [ ] elsa-cadr -...
```elisp (defvar my-custom-var-1 (or (if (memq completing-read-function '(ido-completing-read+ ido-completing-read completing-read-ido-ubiquitous completing-read-ido ido-ubiquitous-completing-read)) 'completing-read-default completing-read-function) 'completing-read-default)) (defun myfun1 (arg) arg) ;; Elsa thinks the argument's type is Unbound (myfun1 my-custom-var-1) ```...
For starters we should add a quick fix that if type is `or nil...` the argument could be missing and default to nil. But later we should probably introduce the...
```elisp (defvar xyz '1+) (funcall xyz 1) ;; < wrong ```
Hi. Thanks for this awesome project! I had some troubles building this on my environment so I decided to create a dockerized build image where I install all the dependencies...
Some test must be removed for insertion otherwise it is impossible to insert `=>` just by typing.
See #1201 - [ ] FAILED sp-test-command-sp-comment-1-1 - [ ] FAILED sp-test-command-sp-comment-1-2 - [ ] FAILED sp-test-command-sp-comment-1-3 - [ ] FAILED sp-test-command-sp-comment-1-4 - [ ] FAILED sp-test-command-sp-split-sexp-2-4 - [x] FAILED...
This will allow us to reduce the nesting of forms such as this ```elisp (-when-let (ok (sp-get-sexp)) (sp-get ok (kill-region :beg-in :end-in) (goto-char :beg-in))) ``` by one level. This is...
https://github.com/syl20bnr/spacemacs/issues/8030 See also https://github.com/syl20bnr/spacemacs/pull/8033