Kir Belevich

Results 73 comments of Kir Belevich

¯\\_(ツ)_/¯ I can't say much without seeing any numbers. It's not Start holds files content in memory, it's what Babel, ESLint and others wants by design: in order to make...

Hm, quite interesting. Thanks for such a detailed response. I see 2 things: 1. `xargs` + `parallel`. It gives child processes spawning another child processes, which I believe ends up...

I can definitely work on `1`, and we should try `2` without Babel register.

From what I see `xargs` doesn't limit the amount of parallel processes 🤔 With `maxProcess` set to `1` I see: ``` compileAll.xargs: start compileAll.xargs: done compile.parallel: start compile.parallel: start compile.parallel:...

Great. I'll publish everything from master tomorrow including that `xargs` wonderful fix and then will think about how to squash `xargs` and `parallel` together for this case, it really spawns...

>reporter-verbose spewing a lot of things to stdout is also one of the cause of high resource That's why it's called "verbose" :) Any suggestions for something like `reporter-pretty`?

I'd say that it's pretty enough, would you mind if I add it to readme?

definitely a good idea, but I haven't used Atom for the last 6 months or so :) go ahead if you want to create something like this.

I like subword-motion so much that I even use it like this: ```coffeescript 'atom-text-editor.vim-mode-plus:not(.insert-mode)': 'w': 'vim-mode-plus:move-to-next-subword' 'W': 'vim-mode-plus:move-to-next-smart-word' 'e': 'vim-mode-plus:move-to-end-of-subword' 'E': 'vim-mode-plus:move-to-end-of-smart-word' 'b': 'vim-mode-plus:move-to-previous-subword' 'B': 'vim-mode-plus:move-to-previous-smart-word' ``` :) but is...

Lack of subword movements in VSCode is so critical for me, as well as occurrences. But I personally have no choice because I work a lot with TypeScript recently and...