From e87cca19cf067e5179f45d495c652fd16b94cfab Mon Sep 17 00:00:00 2001 From: Vivianne Langdon Date: Fri, 18 Jun 2021 05:04:27 -0700 Subject: [PATCH] If I understand correctly this will fix the Mac build --- Src/VimMac/VimHost.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Src/VimMac/VimHost.cs b/Src/VimMac/VimHost.cs index 3e684ec71..2f6aea3c2 100644 --- a/Src/VimMac/VimHost.cs +++ b/Src/VimMac/VimHost.cs @@ -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);