Thiago Padilha

Results 111 comments of Thiago Padilha

In the last commit I changed the approach to adding a proxy device: Instead of calling "Update" passing instance args, I'm calling devicesUpdate directly which seems slightly cleaner since it...

@nopnop does any browser currently supports this feature? For me chrome still shows the mangled variable names(when debugging with source maps, hovering over an original variable name does nothing)

I have taken a quick look at the implementation. It seems @mntmn reimplemented source maps for coffeescript because it wasnt available at the time tern was released. Now it should...

@marijnh that is nice to know. I also tought a bit about the error-tolerant parsing issue and a few possible hacks to partially work around it. What do you think...

@rprichard thanks for the insight. FWIW there's a [branch](https://github.com/neovim/neovim/pull/3976#issuecomment-173425880) where @equalsraf tried winpty unix adapter and it returned 10, which I assume is because the adapter needs to be spawned...

@rprichard take your time, I'm just grateful that you are willing to help us :smile:

> I prototyped a neovimwinpty integration using winpty.dll. I'm not sure it's the right way to do the integration -- invoking something like console.exe might be better, but it's a...

> @tarruda we can write a bit of CMake to build in third-party, but I have already tested and I was able to link against the DLL from MSVC and...

@equalsraf thanks, just tested and it worked nicely :) @rprichard I noticed that winpty works like a unix terminal program on "raw mode"(with little/no interpretation of bytes by the terminal...

@DorianGray I'm not sure if the following is possible with lua, but this API would be nice: ``` lua it('does a thing', function(done) foo_async(function() done() end) end) ``` This is...