Harutyun Amirjanyan

Results 66 comments of Harutyun Amirjanyan

should be fixed by https://github.com/replit/codemirror-vim/pull/205

Perhaps we need a way to keep some kind of document id in the jumplist, or keep the jumplist locally, because as far as i can tell with this change...

We do not support \v modifier. By default we use js compatible regexps so `%s/(\d{2}:\d{2})/$1: /gc` should work Also it is possible to do `:set nopcre` `:%s/\(\d{2}:\d{2}\)/\1: /gc` We need...

@djsjo the attached pull request improves support for vim style regular expressions and informs user that regex mode can be changed. Could you try it on https://raw.githack.com/replit/codemirror-vim/verymagic/dev/web-demo.html and let us...

In your example you did not escape the brace in `{2}`, and for me, the default configuration of vim, does not find matches for it either. `\{2}` works. Does vim...

we could use something like https://github.com/replit/codemirror-vim/pull/181, but sadly codemirror 6 does not have an equivalent of https://codemirror.net/5/doc/manual.html#version, so we can display only version of codemirror-vim itself

It, indeed, may be useful. I'll update the version command in vim if/when `CodeMirror.version` is available.

This is a bug in codemirror itself, as it does not handle keyboard modifiers on ios, and after user pressing `ctrl-d`, dispatches an event for simple `d` keydown see https://github.com/codemirror/view/blob/edb60581119d69d9d3b6bf246224268a36d0376b/src/input.ts#L196...

This happens only for keys that change text in the editor. Try `:map rx` and `:map rx`. to see the difference.

Currently we rely on maximum call stack size exceptions, so @a repeats the macro 512 times. Unfortunately performance of the extension on v6 is worse than v5, so repeating macro...