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:
parent
15574c94c0
commit
fba95cd7b5
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user