vim-yankstack
vim-yankstack copied to clipboard
A lightweight implementation of emacs's kill-ring for vim
Added description of yankstack_yank_keys to documentation.
Using the workaround described [here](https://github.com/vim/vim/issues/5157), I can make yankstack paste the last thing I yanked, but nothing else. The history doesn't seem to be working.
Suppose I have the following text, and that [] represents where my cursor is. ``` [f]oo bar beep bop superman batman hello world ``` I want to record a macro...
I'm observing a conflict between my auto save `autocmd` and yankstack. Instead of cycling though the yank stack the same text is pasted again. Here is the `autocmd` in question:...
This PR adds support for a user defined function that yankstack will run after the initial setup. I recently switched from pathogen to Vim's built-in support for plugins, and noticed...
I'm trying to write some vimscript to allow me to instantly write the yanked buffer out to my filesystem, so that I can make more tools around it. (mainly so...
When in insert mode, if you press CTRL+o then vim allows you to execute one normal mode command. Pressing p causes yankstack to append the text of an echo command....
after deleting into black hole register: "_d then immediately pressing 'p' or 'P' results in nothing. pressing a second time does paste. strangely, if navigating with normal mode 'j','k','l','h' before...
Yankstack's mappings (line 170) rely on Vim's `v:register` variable to define the currently active register. However, there's one oddity about the `v:register`: after yanking/deleting something its value doesn't update until...
As per issue #12, fail to map using map- and emit a message directing users to #18. A better solution may be to silently wrap the old mapping but for...