From 0f6465a1dbc1af6efde1638bbcd565bdceb6d0a2 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 27 Aug 2019 16:11:18 +0200 Subject: [PATCH] don't close autocomplete when hitting tab that's not what the slate impl does and it's not an improvement --- src/editor/autocomplete.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/editor/autocomplete.js b/src/editor/autocomplete.js index ac662c32d8..cf3082ce13 100644 --- a/src/editor/autocomplete.js +++ b/src/editor/autocomplete.js @@ -52,9 +52,6 @@ export default class AutocompleteWrapperModel { } else { await acComponent.moveSelection(e.shiftKey ? -1 : +1); } - this._updateCallback({ - close: true, - }); } onUpArrow() {