Harutyun Amirjanyan

Results 66 comments of Harutyun Amirjanyan

This will be fixed in the next version, until that you can use `Alt-.|ctrl-.|Alt-space` (see https://github.com/MikeRatcliffe/Acebug/wiki for documentation)

This is indeed controlled by the option nrformats in vim, and we should add it. I'll make a pr this weekend.

@sergeichestakov this is quite easy to implement ``` import { lineNumbers } from '@codemirror/view'; function formatNumber() { return lineNumbers({ formatNumber: (lineNo, state) => { if (lineNo > state.doc.lines) { return...

Do you see this on https://raw.githack.com/replit/codemirror-vim/master/dev/web-demo.html, or with another configuration? I couldn't reproduce the bug with chrome 126 on windows with the above link.

@infime did you include [basicSertup](https://codemirror.net/docs/ref/#codemirror.basicSetup), or https://codemirror.net/docs/ref/#commands.standardKeymap in your codemirror setup? Seems like the change is in codemirror itself which does not insert new lines without standardCommands if EditContext mode...

Yes, this sounds like a useful feature.

Currently we are following macvim behavior on mac. That is, you can do `:map å ihello` and then pressing `Option-A` inserts `å` and gets expanded to `ihello`. There seems to...

Attached pull request allows to use `` mapping similar to linux, as long as user does not add mapping for unicode character inserted by ``. You can test it on...

Thank you for testing. The demo has a code to toggle vim with alt-v keybinding, for testing, this won't happen in normal usage.

I have tried to track this down but without much success unfortunately. I'll try to add types to vim.js maybe it will help to track down the issue. Alternatively i...