diff options
author | erw7 <erw7.github@gmail.com> | 2020-04-04 16:10:09 +0900 |
---|---|---|
committer | erw7 <erw7.github@gmail.com> | 2021-02-04 15:20:05 +0900 |
commit | 1e3fadb4196275f45009350b15fd39aef9d848c7 (patch) | |
tree | fc2007bcbff50afdbcc8712102dc19f003132f93 /runtime | |
parent | 14158e8d4722bf96614e5b51bd098dd77422c7c5 (diff) | |
download | rneovim-1e3fadb4196275f45009350b15fd39aef9d848c7.tar.gz rneovim-1e3fadb4196275f45009350b15fd39aef9d848c7.tar.bz2 rneovim-1e3fadb4196275f45009350b15fd39aef9d848c7.zip |
Add termpastefilter option
Change to specify a character to be filtered as an option when pasting on
the terminal.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index a497efa47e..903c99ec8f 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -6289,6 +6289,29 @@ A jump table for the options with a short description can be found at |Q_op|. attributes instead of "cterm" attributes. |highlight-guifg| Requires an ISO-8613-3 compatible terminal. + *'termpastefilter'* *'tpf'* +'termpastefilter' 'tpf' string (default: "") + global + A comma separated list of options for specifying control characters + to be removed from the text pasted into the terminal window. The + supported values are: + + BS Backspace + + HT TAB + + FF Form feed + + ESC Escape + + DEL DEL + + C0 Other control characters, excluding Line feed and + Carriage return < ' ' + + C1 Control characters 0x80...0x9F + + *'terse'* *'noterse'* 'terse' boolean (default off) global |