Val Markovic

Results 47 comments of Val Markovic

I sent a link to this issue to a clang dev I know. You might now get some eyes on your bug reports (no promises).

For others having the same issue, **the best solution is to use [run_scaled](https://github.com/kaueraal/run_scaled)**. 1. Install dependencies for the script (Debian: `sudo apt install xvfb xpra x11-xserver-utils`) 2. Put `run_scaled` on...

While I'd prefer to have optional/keyword args before 1.0, I believe the problem with deprecated functions crufting up the API can be substantially lessened by removing such functions from the...

There's a short-term fix, which is monkey-patching Davis. Here's an example (this works): ``` function customDavisEventHandler(event) { if (shouldStopNavigation()) { event.stopImmediatePropagation(); event.preventDefault(); return false; } } Davis.$(document).delegate(app.settings.formSelector, 'submit', customDavisEventHandler); Davis.$(document).delegate(app.settings.linkSelector,...

I see this merely as a bug of the current implementation; the docs hosted on davisjs.com clearly state the following: > Before filters can be use to modify the request...

IMO, `guard` sounds like a great idea. It's simple and obvious. Thanks for still considering this issue. On Thu, Jan 17, 2013 at 9:56 AM, Oliver Nightingale < [email protected]> wrote:...

> The -s parameter now accepts a folder as well as an sln file. That's a nice feature; thank you for implementing it. But what YCM really needs is a...

> So you start the OmniSharp server even before a C# file has been edited? Not currently, but would like to (for tests and other situations). > Without waiting for...

> 1. Add a /loadsolution call that would load the solution, blocking until it completes. This is fine with me, but read on. > 1. Add a 'solution' (or folder)...