1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-23 19:21:53 +03:00

GH-430 Fix pasting in command line mode

This commit is contained in:
Tae Won Ha 2017-05-12 23:21:04 +02:00
parent 15574c94c0
commit fba95cd7b5
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -770,7 +770,9 @@ extension NeoVimView {
return
}
if self.mode == .cmdline || self.mode == .replace || self.mode == .termFocus {
if self.mode == .cmdline || self.mode == .cmdlineInsert || self.mode == .cmdlineReplace
|| self.mode == .replace
|| self.mode == .termFocus {
self.agent.vimInput(self.vimPlainString(content))
return
}