~ubuntu-branches/debian/sid/neovim/sid

« back to all changes in this revision

Viewing changes to runtime/optwin.vim

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-02-20 22:41:32 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: package-import@ubuntu.com-20160220224132-e24n8lh3yo5ylt23
Tags: upstream-0.1.2
ImportĀ upstreamĀ versionĀ 0.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
540
540
  call append("$", "iconstring\twhen not empty, text for the icon of this window")
541
541
  call <SID>OptionG("iconstring", &iconstring)
542
542
endif
543
 
if has("win32")
544
 
  call append("$", "restorescreen\trestore the screen contents when exiting Vim")
545
 
  call <SID>BinOptionG("rs", &rs)
546
 
endif
547
543
 
548
544
 
549
545
call <SID>Header("using the mouse")
926
922
call append("$", "endofline\tlast line in the file has an end-of-line")
927
923
call append("$", "\t(local to buffer)")
928
924
call <SID>BinOptionL("eol")
 
925
call append("$", "fixeol\tfixes missing end-of-line at end of text file")
 
926
call append("$", "\t(local to buffer)")
 
927
call <SID>BinOptionL("fixeol")
929
928
if has("multi_byte")
930
929
  call append("$", "bomb\tprepend a Byte Order Mark to the file")
931
930
  call append("$", "\t(local to buffer)")
973
972
call append("$", "swapfile\tuse a swap file for this buffer")
974
973
call append("$", "\t(local to buffer)")
975
974
call <SID>BinOptionL("swf")
976
 
call append("$", "swapsync\t\"sync\", \"fsync\" or empty; how to flush a swap file to disk")
977
 
call <SID>OptionG("sws", &sws)
978
975
call append("$", "updatecount\tnumber of characters typed to cause a swap file update")
979
976
call append("$", " \tset uc=" . &uc)
980
977
call append("$", "updatetime\ttime in msec after which the swap file will be updated")