1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-31 07:34:06 +02:00
IntelliJ-IdeaVim/vim-engine/src
Nath Tumlin 156fbcd60d Make yank motion respect exclusive-linewise
I used the code in VimChangeGroupBase.getDeleteRangeAndType to do the check.

For an example of what this fixes, with the document:
```
    ${c}Hello!
```
executing "y}llp" before this change yields
```
    HelHello!
    lo!
```
but doing it with this change yields
```
    Hello!
    Hello!
````
2025-03-07 09:07:53 +02:00
..
main Make yank motion respect exclusive-linewise 2025-03-07 09:07:53 +02:00
test Reformat code 2025-01-10 13:28:48 +03:00