diff options
author | AdnoC <adam.r.cutler@gmail.com> | 2016-05-04 14:16:19 -0400 |
---|---|---|
committer | AdnoC <adam.r.cutler@gmail.com> | 2017-05-31 13:19:08 -0400 |
commit | 9a91ce4fa6a7504644e10a6761eae5cc5699159a (patch) | |
tree | 1afe9cfbb2c5a3a0254289993c34c68cbc5b83fc /runtime | |
parent | a00b03d03f1c8e3aced87c54da7223672bce720d (diff) | |
download | rneovim-9a91ce4fa6a7504644e10a6761eae5cc5699159a.tar.gz rneovim-9a91ce4fa6a7504644e10a6761eae5cc5699159a.tar.bz2 rneovim-9a91ce4fa6a7504644e10a6761eae5cc5699159a.zip |
eval: Add ability to set the unnamed register with setreg
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index f076458fed..f73599ebd9 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -6710,6 +6710,8 @@ setreg({regname}, {value} [, {options}]) used as the width of the selection - if it is not specified then the width of the block is set to the number of characters in the longest line (counting a <Tab> as 1 character). + If {options} contains "u" or '"', then the unnamed register is + set to point to register {regname}. If {options} contains no register settings, then the default is to use character mode unless {value} ends in a <NL> for |