diff options
author | Josh Rahm <rahm@google.com> | 2021-09-22 19:52:25 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2022-01-11 14:31:07 -0700 |
commit | c68d3f83ecb7424379673acf61d7045c13effbd4 (patch) | |
tree | 03f812f4bfa1c94f9ac6e157a2600fb54275d13d | |
parent | 1d4d42398055b1979b66a243161f8ee5fc7a19f5 (diff) | |
download | rneovim-c68d3f83ecb7424379673acf61d7045c13effbd4.tar.gz rneovim-c68d3f83ecb7424379673acf61d7045c13effbd4.tar.bz2 rneovim-c68d3f83ecb7424379673acf61d7045c13effbd4.zip |
Add documentation for the userregfun setting.
-rw-r--r-- | runtime/doc/options.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index da9a138470..7dea475801 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -6691,6 +6691,44 @@ A jump table for the options with a short description can be found at |Q_op|. written to disk (see |crash-recovery|). Also used for the |CursorHold| autocommand event. + *'userregfun'* *'urf'* +'userregfun' 'urf' string (default "") + global + The option specifies a function to be used to handle any registers + that Neovim does not natively handle. This option unlocks all + characters to be used as registers by the user. + + The 'userregfun' function is called each time a user register is read + from or written to. + + The 'userregfun' function must take the following parameters: + + {action} The action being done on this register (either 'yank' + or 'put' + + {register} The string holding the name of the register. This + is always a single character, though multi-byte + characters are allowed. + + {content} If the action is 'yank' this is the content being + yanked into the register. + + In case the action is 'put', the 'userregfun' function should return + the content to place in that location. + + A very simple example of a 'userregfun' function that behaves exactly + like traditional registers would look like: > + + let s:contents = {} + function! MyUserregFunction(action, register, content) abort + if a:action == "put" + return get(s:contents, a:register, "") + else + let s:contents[a:register] = a:content + endif + endfunction + set userregfun=MyUserregFunction +< *'varsofttabstop'* *'vsts'* 'varsofttabstop' 'vsts' string (default "") local to buffer |