André Peric Tavares

Results 32 comments of André Peric Tavares

Indeed, having a consistent experience seems like the best default recommended configuration. Maybe the README could warn users about the caveats. But maybe not. Thanks for the explanation!

Let me also share a bit of my `emacs.el`, as this can be useful to others. I created a git repo in my `denote` dir (as suggested by https://github.com/protesilaos/denote/blob/main/README.org#107-treat-your-notes-as-a-project). With...

Oh, indeed, I didn't know about that customization. Thanks!

Hi @Bad-ptr. Thanks for your help. Do you have any thoughts on adding automatically any type of buffer to a perspective? Basically solving the problem described here: https://github.com/syl20bnr/spacemacs/issues/4956#issuecomment-179669747 I searched...

@Bad-ptr, cool. This seems to be the simplest solution now. Have a look at the Spacemacs issue, an user mentioned another approach. But I think using `after-change-major-mode-hook` for now would...

@Bad-ptr To be honest, I don't really know `persp-mode` code, I just played with some functions once, but `Override the *persp-restrict-buffers-to* if the current buffer is not in the current...

@Bad-ptr :+1: Thanks for making it configurable.

Consider using `clojure-align` instead (with a custom binding or with a wrapper around `lispy-tab`).

Oh, just realized that `lispy` already calls `clojure-align`. Personally, I don't miss the other features from this command [1] so I'd just use the clojure one. [1]: http://oremacs.com/lispy/#lispy-tab EDIT: it...

Here's some untested code that might help: ``` (defun my-lispy-tab () (interactive) (if (memq major-mode lispy-clojure-modes) (call-interactively 'clojure-align) (call-interactively 'lispy-tab))) (lispy-define-key lispy-mode-map "i" 'my-lispy-tab) ```