Emil Kantis
Emil Kantis
> > > @Kantis > What do you use as Authorization? Custom middleware? I have custom `AuthenticationHandler` and a custom `AuthorizationHandler` and they execute before `IClientResolveContributor`. Maybe because they are...
Great to see this being worked on as I was looking for a way to get surround.vim to work with VsVim today! I'd really like to contribute if possible. Are...
Thanks for the guidelines @jaredpar! Any chance to catch active contributors in some IRC-channel? ~~/Src/VsVim/VsVim.csproj won't load in my VS2013 Professional Update 3. Upgrading to Update 4 and trying again~~...
You're right :) The SDK was missing.
Conceptually, sure. I think I'd like to build and run the plugin with the changes for a while before claiming it's good to go for real tho. Just haven't gotten...
Managed to install it and played around with it for a bit.. Seems like it can be really useful to me 😄 I also tried to make sure it didn't...
I'm sorry, I discovered a couple of problems last night. I ran the inspection on Kotest and Hoplite sources and learnt that `shouldBe` supports matching `T` with `Matcher`. Also, any...
Thanks for the input, makes sense.. Fixed the Matcher handling (by simply checking if RHS is a type named `*Matcher*`) Inspection currently passes for primitives which I think kotest handles...
@sksamuel this test passes for me, so it feels like they do? Am I missing something? ``` test("dummy") { val i: Int = 6 i shouldBe 6L } ```
``` test("dummy 1") { 6L shouldBe 2 } --> expected: but was: Expected :2L Actual :6L test("dummy 2") { val y: Int = 2 6L shouldBe y } --> expected:...