Juha Jeronen
Juha Jeronen
Playing around with it some more, this seems to be related to having the real cursor (point) at the start of the blank line (at the end of the buffer)...
With `mc-extras` installed and this incantation in [my `init.el`](https://github.com/Technologicat/spacemacs.d/): ```elisp (require 'mc-extras) (with-eval-after-load "phi-search" (defadvice phi-search-complete (after phi-search-auto-dedup last activate protect) (mc/remove-duplicated-cursors))) ``` the advice actually fires (tested with `message`;...
Maybe in the initial implementation: - Require `with definitions` to appear in tail position in the `with topdown`. Allow only one. - But allow nesting a `with definitions` block in...
Meh, maybe better to feature-freeze 0.14.2 now and leave this for the next release.
Maybe the definitions should apply backwards, to remove the need of nesting `with defs` blocks when the definitions are top-down too? ```python with goal: x = a * b *...
Same in `mcpyrate`; tracked in https://github.com/Technologicat/mcpyrate/issues/32
Now that we have `@typed` to perform dispatching and yell if the argument types are wrong, that could synergize: - Get runtime type checking with compact syntax, allowing us to...
Forgot to mention, this allows us to delete not only the `isinstance` boilerplate that performs runtime type checking, **but also the automated tests** for individual instances of that boilerplate. The...
(As for *good first issue*, obviously every small bit helps. This needs to be split into sub-issues when tackled, anyway.)
Updated TODO list in the initial comment above.