aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-06-08 18:12:28 -0400
committerJustin M. Keyes <justinkz@gmail.com>2019-06-09 00:12:28 +0200
commit0b4c53fc23581abb14b6d4c567dc08720f509020 (patch)
tree39dbdb8dc163206cd626ec8a35063d0bfdab7a57 /runtime
parent93afb347124dff6e2a67254342bc2d822eed52df (diff)
downloadrneovim-0b4c53fc23581abb14b6d4c567dc08720f509020.tar.gz
rneovim-0b4c53fc23581abb14b6d4c567dc08720f509020.tar.bz2
rneovim-0b4c53fc23581abb14b6d4c567dc08720f509020.zip
vim-patch:8.0.1305: writefile() never calls fsync() #10153
Problem: Writefile() never calls fsync(). Solution: Follow the 'fsync' option with override to enable or disable. https://github.com/vim/vim/commit/7567d0b115e332f61a9f390aaccdf7825b891227
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 00194b4613..4dc63763ab 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -8958,7 +8958,7 @@ winwidth({nr}) *winwidth()*
Examples: >
:echo "The current window has " . winwidth(0) . " columns."
:if winwidth(0) <= 50
- : exe "normal 50\<C-W>|"
+ : 50 wincmd |
:endif
< For getting the terminal or screen size, see the 'columns'
option.