Results 51 comments of Felipe

Separate comment -- what would it take to get JSX support in typescript mode? Would be interested to hear if anyone has given any thoughts in regards to the following...

Author of rjsx-mode here. I haven't used 27 yet, but from a couple of threads I was on, I got the sense that there was more to do on the...

If you're using [`nvm.el`](https://github.com/rejeep/nvm.el), once [this PR](https://github.com/rejeep/nvm.el/pull/12) is merged, you can add something like this to your init file: ```elisp (add-hook 'js2-mode-hook 'nvm-use-for-buffer) ``` Then, leaving `mocha-which-node` as `node` will...

I think you can obtain this same behavior by using the built-in `recompile` command. Unless I'm missing something else, you can get the same results with: ```elisp (defalias 'mocha-run-last #'recompile)...

I'm using `jest` and got this working in about 1h using the following advice to replace `mocha-generate-command`. I think `jest` runs `jasmine` under the hood, so this should probably work....

I wrote a rudimentary websocket client a few days ago: https://github.com/felipeochoa/websocket-client. It's a simple chat-based UI. It has some rough edges, but it works for my needs

@mhr3 Thanks! This solved the issue for me

I don't use folding much in JSX, but I do use `fold-this` in other modes. Here's a quick-and-dirty folding function you can try: ```el (defun rjsx-fold-tag-at-point () (interactive) (js2-mode-wait-for-parse (lambda...

@kiwanami Thanks! I'm using the `org` calendar, so am adding the source using this advice on `cfw:open-org-calendar` ```elisp (defun cfw:open-org-calednar-holiday-advice () "Add the custom holiday source to the calendar." (nconc...

Actually, this doesn't work as advice since there's no way to get the buffer that was added, and it doesn't work as a mode hook as `cfw:component` is defined after...