Issue: In libvim, trying to run the sub ex command with the confirm flag will enter a blocking input mode, causing a hang.
Defect: The confirm code path hasn't been factored out to a non-blocking state machine
Fix: For now, show an error message saying that confirm isn't currently supported. This is at least better than hanging / crashing. Ideally, though, a future fix would be to implement the confirm behavior as a state machine.
Issue: In
libvim
, trying to run thesub
ex command with the confirm flag will enter a blocking input mode, causing a hang.Defect: The confirm code path hasn't been factored out to a non-blocking state machine
Fix: For now, show an error message saying that confirm isn't currently supported. This is at least better than hanging / crashing. Ideally, though, a future fix would be to implement the confirm behavior as a state machine.