comparison runtime/optwin.vim @ 20856:83cfa1ef1bf2

Update runtime files Commit: https://github.com/vim/vim/commit/65e0d77a66b7e50beb562ad554ace46c32ef8f0f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 14 17:29:55 2020 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Jun 2020 17:45:04 +0200
parents 661eb972cb22
children 52e970719f4b
comparison
equal deleted inserted replaced
20855:6390b8b611fb 20856:83cfa1ef1bf2
1 " These commands create the option window. 1 " These commands create the option window.
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2020 Jun 02 4 " Last Change: 2020 Jun 10
5 5
6 " If there already is an option window, jump to that one. 6 " If there already is an option window, jump to that one.
7 let buf = bufnr('option-window') 7 let buf = bufnr('option-window')
8 if buf >= 0 8 if buf >= 0
9 let winids = win_findbuf(buf) 9 let winids = win_findbuf(buf)
445 call append("$", "\t(local to buffer)") 445 call append("$", "\t(local to buffer)")
446 call <SID>OptionL("spf") 446 call <SID>OptionL("spf")
447 call append("$", "spellcapcheck\tpattern to locate the end of a sentence") 447 call append("$", "spellcapcheck\tpattern to locate the end of a sentence")
448 call append("$", "\t(local to buffer)") 448 call append("$", "\t(local to buffer)")
449 call <SID>OptionL("spc") 449 call <SID>OptionL("spc")
450 call append("$", "spelloptions\tflags to change how spell checking works")
451 call append("$", "\t(local to buffer)")
452 call <SID>OptionL("spo")
450 call append("$", "spellsuggest\tmethods used to suggest corrections") 453 call append("$", "spellsuggest\tmethods used to suggest corrections")
451 call <SID>OptionG("sps", &sps) 454 call <SID>OptionG("sps", &sps)
452 call append("$", "mkspellmem\tamount of memory used by :mkspell before compressing") 455 call append("$", "mkspellmem\tamount of memory used by :mkspell before compressing")
453 call <SID>OptionG("msm", &msm) 456 call <SID>OptionG("msm", &msm)
454 endif 457 endif