Thomas Fini Hansen

Results 54 comments of Thomas Fini Hansen

Dammit Jim! Should check on what editorconfig-emacs does, it's basically doing the same thing for all kinds of file types. And what should happen if one has an `.editorconfig` in...

Something is definitely off there. Those files are only supposed to be loaded if you already have their dependencies loaded. To take one example, in drupal-mode.el: ```lisp (eval-after-load 'helm-gtags '(require...

Tried installing it via list-packages instead? Doubt it makes much difference though. Tried installing other packages? expand-region and smartparens seems to have a bunch of eval-after-loads too. Hope @arnested has...

Odd indeed. > Does emacs store configuration anywhere other than ~/.emacs.d? Emacs doesn't really store configuration as such, per default it loads `~/.emacs`/`~/.emacs.el`/`~/.emacs.d/init.el` and places like `/usr/share/emacs/site-lisp`, but it tries...

Well, drupal-mode is rather dependent on finding those files in order to determine if it is Drupal and the version. I think that removing those checks would cripple drupal-mode. Could...

Theres ESLint support in flycheck, it just requires one to disable the jshint checker. The question is whether to just disable jshint buffer locally for Drupal js files, and assume...

Yeah, basically, but you get two buffers, so you can show them both. But I just discovered that font-lock isn't independent, so that kind of defeats the purpose. An alternative...

FWIW, I've ended up writing something similar too: https://github.com/xendk/indentinator I haven't gotten round to trying to getting it in MELPA, as it really doesn't do anything new, doesn't try to...

Huh? What's up with travis?

Ah, here: https://travis-ci.com/xendk/phpspec-laravel/builds/98431981 As expected. Testing under PHP 7.2, I had to add the typehints for phpspec-laravel living up to the contract, but obviously that doesn't work with PHP 7....