diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-08 18:12:28 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-06-09 00:12:28 +0200 |
commit | 0b4c53fc23581abb14b6d4c567dc08720f509020 (patch) | |
tree | 39dbdb8dc163206cd626ec8a35063d0bfdab7a57 /runtime | |
parent | 93afb347124dff6e2a67254342bc2d822eed52df (diff) | |
download | rneovim-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.txt | 2 |
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. |