T.v.Dein

Results 76 comments of T.v.Dein

Yeah, that's just an error message you get if something isn't installed :) Don't get me wrong: I know how to install node.js and the like. I found it just...

> I see your point but cash is a node/ES6 tool, > it's built for who already has node installed. pretty clear. But I found it by looking for a...

@dthree: not sure what you're expecting from me. As I already explained I don't have any clue about node.js or its ecosystem. So, please don't expect a PR from me....

This is what I have now, although I wrote it myself.

I wrote a little function which demonstrates it: ```emacs-lisp (defun tvd-lisp-comment () (interactive) (if (not (looking-at "\(")) (self-insert-command 1) (let ((beg (point))) (forward-list 1) (when (looking-at "\(") (insert "\n")) (comment-region...

Hm, `sp-comment` doesn't do this, it only seems to insert a `;` wherever I am. The other way you described seems to work very good but it requires the additional...

I tried: ``` (add-to-list 'aggressive-indent-dont-indent-if (let ((line (thing-at-point 'line))) (and (stringp line) (string-match "\\bif *([^)]*$" line)))) ``` but this doesn't work. Indenting still starts whenever I enter anything on a...

Unfortunately it doesn't. With this in place, no indenting at all happens any more (which was the same with my version), unless if I hit .

I've got the same problem with python-mode, although SPC there is bound to `electric-align-SPC`. To be sure it's not a problem with my config, I started emacs with -Q and...

Howdy, another - related - question: what about merge requests? My current workflow looks like this: I develop in a `dev` branch with possibly many commits. When everyting works as...