prompt-toolkit / pyvim

Pure Python Vim clone.
BSD 3-Clause "New" or "Revised" License
2.52k stars 163 forks source link

Named yank buffers not working #38

Closed lunemec closed 8 years ago

lunemec commented 9 years ago

Named buffers are not working: shortcuts "3y - yank selected into buffer number 3 .. instead of numbers it can contain also letters "ay (yank buffer a). You paste this with "3p or "ap.

                            *v_y*
{Visual}["x]y       Yank the highlighted text [into register x] (for
            {Visual} see |Visual-mode|).  {not in Vi}

                            *v_Y*
{Visual}["x]Y       Yank the highlighted lines [into register x] (for
            {Visual} see |Visual-mode|).  {not in Vi}
jonathanslenders commented 8 years ago

This has to be implemented in prompt-toolkit itself: https://github.com/jonathanslenders/python-prompt-toolkit/issues/207

I'm closing this issue in favor of that one.