Andrew Radev

Results 225 comments of Andrew Radev

Killing the server with TERM instead of KILL makes a lot of sense, for sure. If nothing else, we could do the "TERM -> wait for timeout -> KILL after...

Also, I have no idea what order the `@r.close; @w.close` have to be done in, whether before or after. Could you explain why you've moved them to the end? Does...

> Is kill -9 faster than kill -TERM also? > > Depending on what you used the sleep 0.1 while Process.waitpid(@pid, Process::WNOHANG).nil? might add some overhead already timewise. > >...

It seems like a nice start. Skimming through it, I can definitely see a few areas where I'd like style changes, but for now, I think it's more important for...

Hmm, I have to admit, I have no idea what could be causing this. I switched to trusty for most of my plugins, and I've seen no slowdown -- for...

I compiled Vim at 7.4.0059, but I can't really see any slowdown. I'm wondering if it isn't the terminal vim hangup that we discussed in a different thread. Could you...

I'll have to look into covimerage and how it works, and experiment a bit maybe. For now, I could at least give you some things to try. For starters: >...

The Vim instance will be killed automatically upon process exit, since it's a child of that process (as far as I know). The issue discussed in #19 was whether we...

@jarmo, I tried using the `childprocess` gem in the [childprocess branch](https://github.com/AndrewRadev/vimrunner/tree/childprocess). However, as I expected, it didn't work for terminal Vim. I'll expand on that below. @moll, I haven't worked...

Yeah, I've noticed this issue in the past. For larger test suites, Vim hangs. I'm not sure if it's a bug with Vim, or some problem in the way I...