Skip to content

Commit

Permalink
Fix a message in optwin.vim
Browse files Browse the repository at this point in the history
The description of 'modifiable' looks opposite.
  • Loading branch information
k-takata committed Oct 14, 2020
1 parent 3d30af8 commit 4cf0ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/optwin.vim
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ call <SID>BinOptionL("mod")
call <SID>AddOption("readonly", gettext("buffer is not to be written"))
call append("$", "\t" .. s:local_to_buffer)
call <SID>BinOptionL("ro")
call <SID>AddOption("modifiable", gettext("changes to the text are not possible"))
call <SID>AddOption("modifiable", gettext("changes to the text are possible"))
call append("$", "\t" .. s:local_to_buffer)
call <SID>BinOptionL("ma")
call <SID>AddOption("textwidth", gettext("line length above which to break a line"))
Expand Down

0 comments on commit 4cf0ab8

Please sign in to comment.