replit / codemirror-vim

Vim keybindings for CM6
https://www.npmjs.com/package/@replit/codemirror-vim
MIT License
268 stars 27 forks source link

Fix option values that include = #161

Closed Opisek closed 5 months ago

Opisek commented 5 months ago

Why

Options that include = inside their value would break, in particular langmaps: set langmap=ab,cd,=e should remap = to e, instead the option value was cut early at ab,cd,.

What changed

Merge all parts of the split string string but the first one using =.

Test plan

nightwing commented 5 months ago

Thank you!