diff --git a/runtime/doc/gui_w32.txt b/runtime/doc/gui_w32.txt index 475b12e962..e0e3eccf8f 100644 --- a/runtime/doc/gui_w32.txt +++ b/runtime/doc/gui_w32.txt @@ -1,4 +1,4 @@ -*gui_w32.txt* For Vim version 9.1. Last change: 2025 Dec 21 +*gui_w32.txt* For Vim version 9.1. Last change: 2026 Jan 30 VIM REFERENCE MANUAL by Bram Moolenaar @@ -512,12 +512,12 @@ to the 'guioptions' setting. For convenience, you can define a command or mapping to toggle fullscreen mode: > - command! ToggleFullscreen { - if &guioptions =~# 's' - set guioptions-=s - else - set guioptions+=s - endif + command ToggleFullscreen { + if &guioptions =~# 's' + set guioptions-=s + else + set guioptions+=s + endif } map &go =~# 's' ? ":se go-=s" : ":se go+=s"