Anders Tidbeck

Results 17 comments of Anders Tidbeck

One way to do it (probably not the prettiest): `myArg := myMock.Calls[len(myMock.Calls)-1].Arguments[0].(*MyArgumentType)` _Update:_ I created a helper function: ``` func LastCall(expectedCall *mock.Call) *mock.Call { calls := expectedCall.Parent.Calls for i :=...

Have you followed the [Install XVim for Xcode 8](https://github.com/XVimProject/XVim/blob/master/INSTALL_Xcode8.md) instructions (re-signed Xcode)?

@jduan you need to build the `develop` branch to get support for Xcode 8.3.1 as `IDEPlaygroundEditor` has been removed. See #1055

According to the [contribution guidelines](https://github.com/XVimProject/XVim/blob/master/.github/CONTRIBUTING.md) you should fix all bugs in the develop branch.

Should probably be closed. Can't reproduce in develop.

I can reproduce this if I use an existing certificate from Apple's developer program but not if I generate a new certificate according to the instructions on [INSTALL_Xcode8](https://github.com/XVimProject/XVim/blob/master/INSTALL_Xcode8.md) If this...

Can you provide some more information: XVim commit, the text you are editing etc. Also have you tried Xcode 8.2?

Have you enabled highlight search in `.xvimrc` with `set hlsearch`?

Should we close this one? @tangmengze sounds like a different issue. Think you should file a separate issue.

Isn't `index` the position in the text to start searching from and `pos` the position for the start of the same line?