Arne Döring

Results 71 comments of Arne Döring

@yuutayamada Well I think he pointed it out quite nicely, even though there is a typo (``echo x.len`` should be ``echo xs.len``). Indent region on a region destroys the logical...

I think the only thing, that really needs to be addressed is, that pastes should be indeted somehow, and I think that should not be too smart. I don't really...

that is an interesting function indeed. Emacs has so many hidden features ...

@vegansk I tested your example, and I can't reproduce it. The else branch is not affectey by the newline.

Well the else branch actually should indent to the same level as the case of branch, because the else brach is mandatory in almost all case of statements. While in...

when niminst has been moved, this issue should be migrated.

I think it is possible. I think [Multiline Font Lock](https://www.gnu.org/software/emacs/manual/html_node/elisp/Multiline-Font-Lock.html) is the way to approach the problem. But I don't know specifically how to do it.

Seriously, the programming language Nim has style insensitive identifier matching. So `MyThing`, `MY_THING`, `Mything` `MythIng` are all the same. `_` is ignored and case insensetive. Except the first letter, that...

This is my configuration: ```elisp (defun arne--get-nim-compile-command () "Calculate a good default compile command for Nim." (let ((koch-dir (locate-dominating-file buffer-file-name "koch.nim")) (nimble-dir (arne--locate-dominating-nimble-file))) (cond (koch-dir ;; in the compiler (concat...

I just stumbled upon the documentation of `bitnot` being missing. This did bother me, not because I would need it (I don't) but because it is totally possible to implement...