Manuel Kaufmann

Results 1301 comments of Manuel Kaufmann

Some work done at https://github.com/humitos/emacs-configuration/commit/f3f4020

for the third point, I will need to set the `tags-table-list` for all the tags files I want to take a look (maybe as a local variable or something like...

Initial _working_ approach: ```lisp (defun meta-dot () "Use elpy-goto-definition first and if it fails, use helm-etags-select." (interactive) (let ((location (elpy-rpc-get-definition)) (tags-table-list-orig tags-table-list)) (if location (elpy-goto-location (car location) (cadr location)) (progn...

I'm trying something like this ```lisp (setq projectile-git-ignored-command "git ls-files -z --cached --others --ignored --exclude-standard --exclude-from='/home/humitos/.emacs.d/.projectile'") (setq projectile-git-command "git ls-files -z --cached --others --exclude-standard --exclude-from='/home/humitos/.emacs.d/.projectile'") ```

Maybe this is the problem here: https://github.com/humitos/emacs-configuration/blob/9e2859be0228162f8994e2750e4b92b3fcb49bed/startup.d/helm.el#L71-L77 I'm using `locate` I think for those projects.

```lisp (helm-occur) ``` does exactly what I want, but I didn't find a way yo call it with a pre-defined regex

Regex passed to `helm-occur` to get the same result `^ *\(def\|class\)`

`gifcast.el` is only supported in Mac OSX :( I found this other that could be a good replacement: https://github.com/esbena/screencast-mode

Now that I'm using `gitgutter-fringe` it should be compatible with this.

I found this plugin that maybe does the magic for me: https://github.com/robert-zaremba/auto-virtualenvwrapper.el