Bozhidar Batsov
Bozhidar Batsov
I guess fuzzy completion can help you to some extent https://docs.cider.mx/cider/0.26/usage/code_completion.html#fuzzy-candidate-matching
I'm not sure how complex this would be, as the backend is case-sensitive, so I can't imagine that it'd be enough to only change something on company's side. It's probably...
PRs welcome. I doubt I'll get to this ticket any time soon, as I've got quite the backlog of other tickets to address.
See what are the messages exchanged between CIDER and nREPL as described here http://cider.readthedocs.io/en/latest/troubleshooting/ I see we've got an cljs implementation for the macroexpansion, so in theory everything should be...
There's a hook in `prelude-editor.el` that does this: ``` ;; make a shell script executable automatically on save (add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p) ``` You can use `remove-hook` to remove it.
We can have a more sophisticated hook - e.g. one that ignores certain files or runs additional predicate checks. It's easy to do, but I think it's going to be...
I actually think there's an easy fix - we can just strip such faces before freezing the input.
We should probably support this properly in clojure-mode, but I'm not sure what's the best option, as `'` is also the quote reader macro, therefore I can't just mark it...
@Malabarba any idea how to tackle this?