diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-15 18:51:32 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-15 18:51:32 +0100 |
commit | e1f3fd1d02e3f5fe6d2b6d82687c6846b8e500f8 (patch) | |
tree | f00150bb6e9c2813a69adef48cea5d43c0680c32 /runtime/doc/options.txt | |
parent | 5a4fff4d948cd12a5cf5f637ad2c561815a77d8e (diff) | |
download | vim-git-e1f3fd1d02e3f5fe6d2b6d82687c6846b8e500f8.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r-- | runtime/doc/options.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index ee17e6445..0b35e9405 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -814,7 +814,7 @@ A jump table for the options with a short description can be found at |Q_op|. if [[ -n "$VIM_TERMINAL" ]]; then PROMPT_COMMAND='_vim_sync_PWD' function _vim_sync_PWD() { - printf "\033]7;file://%s\033\\" "$PWD" + printf '\033]7;file://%s\033\\' "$PWD" } fi < @@ -823,14 +823,14 @@ A jump table for the options with a short description can be found at |Q_op|. autoload -Uz add-zsh-hook add-zsh-hook -Uz chpwd _vim_sync_PWD function _vim_sync_PWD() { - printf "\033]7;file://%s\033\\" "$PWD" + printf '\033]7;file://%s\033\\' "$PWD" } fi < In a fish init file: > if test -n "$VIM_TERMINAL" function _vim_sync_PWD --on-variable=PWD - printf "\033]7;file://%s\033\\" "$PWD" + printf '\033]7;file://%s\033\\' "$PWD" end end < @@ -1793,7 +1793,8 @@ A jump table for the options with a short description can be found at |Q_op|. When 'cmdheight' is zero, there is no command-line unless it is being used. Some informative messages will not be displayed, any other - messages will cause the |hit-enter| prompt. + messages will cause the |hit-enter| prompt. Expect some other + unexpected behavior too. *'cmdwinheight'* *'cwh'* 'cmdwinheight' 'cwh' number (default 7) |