Arthur Miller

Results 35 comments of Arthur Miller

You could use this as a quick hack: ``` (defun dired-subtree-toggle-advice (orig-fn &rest args) (cond ((bound-and-true-p dired-git-info-mode) (dired-git-info-mode -1) (apply orig-fn args) (dired-git-info-mode +1)) (t (apply orig-fn args)))) (advice-add 'dired-subtree-toggle...

> I'm not sure if this was added later as the second example isn't sorted, but on my `bash` 4.4 and 5.0, associative arrays sort in lexicographical and reverse lexicographical...

Ok, cool, thnks. I made a PR, see if it works. I am not sure with how old Emacses you would like to keep compatibility. The PR could be made...

> Why don't you hit bb from magit, it allows quick branch switching with I am not so much of the mouse guy :). Helm is just cool, and I...

> Will show you soon, it should not be that hard, not the time right now ;-) hehe ... I have figured it out, took me about two hours, but...

https://github.com/amno1/helm-git-branch It is not finished yet because of lack of time so I haven't published it in Melpa, but switching local branches is operational. My plan is to add functionality...

You can just place the cursor after the source code in Helpful buffer and C-x C-e, which runs eval-last-sexp if you are using default key bindings.

Built-in help and Helpful use completely different infrastructure to accomplish what they do. To make each one integrate efficiently with another would mean it has to be re-written in terms...