emacksnotes

Results 11 issues of emacksnotes

In [`lsp-ui-imenu--visit`](https://github.com/emacs-lsp/lsp-ui/blob/7c5c8a60bf502442941ef62a471a94f150fbbc49/lsp-ui-imenu.el#L302) and [`lsp-ui-imenu--view`](https://github.com/emacs-lsp/lsp-ui/blob/master/lsp-ui-imenu.el#L309), replace ``` (goto-char marker) ``` with ``` (goto-char (overlay-start marker)) ``` Without the above changes I get the following error ``` funcall-interactively: Wrong type argument: integer-or-marker-p,...

ui-imenu

Visit xdisp.c@Emacs 26.2 With point at the beginning of buffer, do `M-x origami-recursively-toggle-node`. I get the following backtrace which goes like this. (See attachment for the full backtrace) ``` Debugger...

## Link to tutorial on `tablist-minor-mode` I created a tutorial for `tablist-minor-mode`. See [How I shortlist add-ons for my Emacs: Introducing `tablist` – Emacs Notes](https://emacsnotes.wordpress.com/2019/04/16/how-i-shortlist-add-ons-for-my-emacs-introducing-tablist/). ## Problems I discovered ###...

Not a issue but a recipe ... I wonder what variables apart from `byte-compile-current-file` affects the macroexpansion of `use-package`. If there are other such variables, they can be prompted for...

docs

### `make` fails with `make: *** No rule to make target 'xcb-xproto.el', needed by 'all'. Stop.` ``` @debian:~/src$ git clone --depth 1 https://github.com/ch11ng/xelb Cloning into 'xelb'... remote: Enumerating objects: 51,...

Add `-de-annotate` which is same as `(-map #'cdr ..)`. As a programmer, I would like to see an `-annotate` paired with `-de-annotate`, so that I can easily compute what annotations...

enhancement

Proposal `-distribute` --- Distribute a set of objects among different bins; each bin is associated with a predicate function. In other words, an object belongs to a bin, if it...

enhancement

**Proposal to introduce `-> '(H S L) (--map (intern (format "INDEX-OF-%s-IN-HSLUV" it)))) (->> '(H S L) (funcall (-compose (-cut -iota 0) #'length)))) ``` and evaluates to ```lisp ((INDEX-OF-H-IN-HSLUV INDEX-OF-S-IN-HSLUV INDEX-OF-L-IN-HSLUV)...

enhancement

Proposal add `-which` -- Return indices where the list entry is non-nil This is not so much about how the implementation of `-which` should look like, but about what the...