|
1 | 1 | " These commands create the option window. |
2 | 2 | " |
3 | 3 | " Maintainer: The Vim Project <https://github.com/vim/vim> |
4 | | -" Last Change: 2025 Oct 07 |
| 4 | +" Last Change: 2025 Nov 20 |
5 | 5 | " Former Maintainer: Bram Moolenaar <[email protected]> |
6 | 6 |
|
7 | 7 | " If there already is an option window, jump to that one. |
@@ -860,6 +860,8 @@ call append("$", " \tset bs=" . &bs) |
860 | 860 | call <SID>AddOption("comments", gettext("definition of what comment lines look like")) |
861 | 861 | call append("$", "\t" .. s:local_to_buffer) |
862 | 862 | call <SID>OptionL("com") |
| 863 | +call <SID>AddOption("commentstring", gettext("template for comments; used to put the marker in")) |
| 864 | +call <SID>OptionL("cms") |
863 | 865 | call <SID>AddOption("formatoptions", gettext("list of flags that tell how automatic formatting works")) |
864 | 866 | call append("$", "\t" .. s:local_to_buffer) |
865 | 867 | call <SID>OptionL("fo") |
@@ -1039,8 +1041,6 @@ if has("folding") |
1039 | 1041 | call <SID>AddOption("foldminlines", gettext("minimum number of screen lines for a fold to be closed")) |
1040 | 1042 | call append("$", "\t" .. s:local_to_window) |
1041 | 1043 | call <SID>OptionL("fml") |
1042 | | - call <SID>AddOption("commentstring", gettext("template for comments; used to put the marker in")) |
1043 | | - call <SID>OptionL("cms") |
1044 | 1044 | call <SID>AddOption("foldmethod", gettext("folding type: \"manual\", \"indent\", \"expr\", \"marker\",\n\"syntax\" or \"diff\"")) |
1045 | 1045 | call append("$", "\t" .. s:local_to_window) |
1046 | 1046 | call <SID>OptionL("fdm") |
|
0 commit comments