Remove ControlSpace handling

This commit is contained in:
c-bata 2018-02-19 23:41:34 +09:00
parent f2ee1fd099
commit b884e90bc5

View File

@ -161,8 +161,6 @@ func (p *Prompt) handleCompletionKeyBinding(key Key, completing bool) {
}
case BackTab:
p.completion.Previous()
case ControlSpace:
return
default:
if s, ok := p.completion.GetSelectedSuggestion(); ok {
w := p.buf.Document().GetWordBeforeCursor()