onivim / libvim

libvim: The core Vim editing engine as a minimal C library
https://v2.onivim.io
MIT License
691 stars 34 forks source link

fix(cmdline): Implement insert literal behavior for command line #250

Closed bryphe closed 3 years ago

bryphe commented 3 years ago

Issue: Control+v / Control+q (insert literal) was not implemented for command-line.

Fix: Leverage the same insert literal state that is used in edit.c, and use it in ex_getln.c.

TODO: