Skip to content

Commit

Permalink
If I understand correctly this will fix the Mac build
Browse files Browse the repository at this point in the history
  • Loading branch information
viviicat committed Jun 18, 2021
1 parent daba175 commit e87cca1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Src/VimMac/VimHost.cs
Expand Up @@ -350,6 +350,11 @@ public bool GoToDefinition()
return Dispatch(CommandNameGoToDefinition);
}

public bool PeekDefinition()
{
throw new NotImplementedException();
}

public bool GoToGlobalDeclaration(ITextView textView, string identifier)
{
return Dispatch(CommandNameGoToDefinition);
Expand Down

0 comments on commit e87cca1

Please sign in to comment.