Skip to content

Commit

Permalink
Merge pull request #2817 from nosami/dev/nosami/fix-2766
Browse files Browse the repository at this point in the history
Close signature help and completion window when escape is pressed
  • Loading branch information
nosami committed May 26, 2020
2 parents e0cdedf + dbbf091 commit 5b6b3ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Src/VimMac/Properties/AddinInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[assembly: Addin(
"VsVim",
Namespace = "Vim.Mac",
Version = "2.8.0.7"
Version = "2.8.0.8"
)]

[assembly: AddinName("VsVim")]
Expand Down
2 changes: 1 addition & 1 deletion Src/VimMac/VimKeyProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private bool ShouldBeProcessedByVim(KeyEventArgs e)
if (_completionBroker.IsCompletionActive(TextView) && !IsEscapeKey(e))
return false;

if (_signatureHelpBroker.IsSignatureHelpActive(TextView))
if (_signatureHelpBroker.IsSignatureHelpActive(TextView) && !IsEscapeKey(e))
return false;

if (_inlineRenameListenerFactory.InRename)
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
filePath: Scripts/build.sh
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: Binaries/Debug/VimMac/net472/Vim.Mac.VsVim_2.8.0.7.mpack
pathToPublish: Binaries/Debug/VimMac/net472/Vim.Mac.VsVim_2.8.0.8.mpack
artifactName: VSMacExtension

- job: VsVim_Build_Test
Expand Down

0 comments on commit 5b6b3ff

Please sign in to comment.