From 0b4c53fc23581abb14b6d4c567dc08720f509020 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 8 Jun 2019 18:12:28 -0400 Subject: 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 --- runtime/doc/eval.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') 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\|" + : 50 wincmd | :endif < For getting the terminal or screen size, see the 'columns' option. -- cgit