Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions doc/yankstack.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@ For example, if you wanted to define some mappings based on your |leader| key, y
nmap <leader>p <Plug>yankstack_substitute_older_paste
nmap <leader>P <Plug>yankstack_substitute_newer_paste

You can also prevent certain keys from being remapped by setting the `g:yankstack_yank_keys`
to the keys of your choosing. For example, if you only want Yankstack to remap `y` and `d`:

```
let g:yankstack_yank_keys = ['y', 'd']
```

the default value of this variable is

```
let g:yankstack_yank_keys = ['c', 'C', 'd', 'D', 's', 'S', 'x', 'X', 'y', 'Y']
```

COMPATIBILITY *yankstack-compatibility*

Expand Down