comparison runtime/optwin.vim @ 6292:31f7581068a9

Update runtime files and translations.
author Bram Moolenaar <bram@vim.org>
date Wed, 15 Oct 2014 22:51:52 +0200
parents 1e8ebf870720
children f654ad95fd4e
comparison
equal deleted inserted replaced
6291:8e00861fcd61 6292:31f7581068a9
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: 2014 Aug 06 4 " Last Change: 2014 Oct 09
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 if bufwinnr("option-window") > 0 7 if bufwinnr("option-window") > 0
8 let s:thiswin = winnr() 8 let s:thiswin = winnr()
9 while 1 9 while 1
726 call <SID>OptionG("km", &km) 726 call <SID>OptionG("km", &km)
727 727
728 728
729 call <SID>Header("editing text") 729 call <SID>Header("editing text")
730 call append("$", "undolevels\tmaximum number of changes that can be undone") 730 call append("$", "undolevels\tmaximum number of changes that can be undone")
731 call append("$", "\t(global or local to buffer)")
731 call append("$", " \tset ul=" . &ul) 732 call append("$", " \tset ul=" . &ul)
732 call append("$", "undoreload\tmaximum number lines to save for undo on a buffer reload") 733 call append("$", "undoreload\tmaximum number lines to save for undo on a buffer reload")
733 call append("$", " \tset ur=" . &ur) 734 call append("$", " \tset ur=" . &ur)
734 call append("$", "modified\tchanges have been made and not written to a file") 735 call append("$", "modified\tchanges have been made and not written to a file")
735 call append("$", "\t(local to buffer)") 736 call append("$", "\t(local to buffer)")
975 call append("$", "backup\tkeep a backup after overwriting a file") 976 call append("$", "backup\tkeep a backup after overwriting a file")
976 call <SID>BinOptionG("bk", &bk) 977 call <SID>BinOptionG("bk", &bk)
977 call append("$", "backupskip\tpatterns that specify for which files a backup is not made") 978 call append("$", "backupskip\tpatterns that specify for which files a backup is not made")
978 call append("$", " \tset bsk=" . &bsk) 979 call append("$", " \tset bsk=" . &bsk)
979 call append("$", "backupcopy\twhether to make the backup as a copy or rename the existing file") 980 call append("$", "backupcopy\twhether to make the backup as a copy or rename the existing file")
981 call append("$", "\t(global or local to buffer)")
980 call append("$", " \tset bkc=" . &bkc) 982 call append("$", " \tset bkc=" . &bkc)
981 call append("$", "backupdir\tlist of directories to put backup files in") 983 call append("$", "backupdir\tlist of directories to put backup files in")
982 call <SID>OptionG("bdir", &bdir) 984 call <SID>OptionG("bdir", &bdir)
983 call append("$", "backupext\tfile name extension for the backup file") 985 call append("$", "backupext\tfile name extension for the backup file")
984 call <SID>OptionG("bex", &bex) 986 call <SID>OptionG("bex", &bex)