Shohei YOSHIDA

Results 212 comments of Shohei YOSHIDA

I suppose that it is not good for override defined function. It effects other package. Is there a smart way ?

I don't understand React well. What feature should we implement for supporting React ? syntax highlight ? indentation ? others ?

NOTE: - https://github.com/mntmn/tern-coffeescript - https://github.com/ternjs/tern/issues/226

See #323. I can't change indent line behavior for compatibility. So I introduce `coffee-indent-like-python-mode` flag if its value is non-nil, coffee-mode indents same as python-mode then this issue is fixed.

I merged #323. Please upgrade and set `coffee-indent-like-python-mode` to non-nil.

> Is there a way to run 'npm run tests' defined in a project package.json from coffee-mode. no way. You can write such command as below. ``` lisp ;; for...

Do you evaluate following expression ? ``` lisp (eval-after-load 'compile '(add-hook 'compilation-filter-hook (lambda () (ansi-color-process-output nil)))) ``` If you evaluate it, then you get output like following screenshot. ![npm-test](https://cloud.githubusercontent.com/assets/554281/7268067/8af55a74-e8ff-11e4-96de-789c65ea5f5c.png)

``` lisp (defun my/coffee-indent-line () (interactive) (if (zerop (current-column)) (insert " ") (call-interactively 'coffee-indent-line))) (defun my/coffee-mode-hook () (when (string-match-p "\\.litcoffee\\'" (buffer-name)) (setq indent-line-function 'my/coffee-indent-line))) (add-hook 'coffee-mode-hook 'my/coffee-mode-hook) (add-to-list 'auto-mode-alist '("\\.litcoffee\\'"...

It is good idea however I suppose it should be created as another package.

I think you should write ``` lisp (add-to-list 'elixir-mode-hook 'alchemist-mode) ``` Because a function `alchemist-mode-hook` is not an autoloaded function. ``` lisp (add-to-list 'elixir-mode-hook (alchemist-mode +1)) ``` This code works...