logseq-plugin-vim-shortcuts
logseq-plugin-vim-shortcuts copied to clipboard
Jump at the position of search result with `a` and `i`
Currently, when the user types /foo, it finds every reference to foo in the blocks in the current notes, and the user can move using n and N.
Unfortunately, he cannot edit an occurrence of foo directly: the user must type i to go to the beginning of the block, then move to the right position, and finally edit the word. Instead, i could go directly before the current occurrence, and a after. c could even delete the current occurrence and place the cursor at this position.
This is related to #14 . I don't know if the feature I am asking for can be implemented with the current logseq API.