]> git.pld-linux.org Git - packages/vim.git/blob - 7.1.308
- recognize update_mime_database
[packages/vim.git] / 7.1.308
1 To: vim-dev@vim.org
2 Subject: Patch 7.1.308
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.1.308
11 Problem:    When in readonly mode ":options" produces an error.
12 Solution:   Reset 'readonly'. (Gary Johnson)
13 Files:      runtime/optwin.vim
14
15
16 *** ../vim-7.1.307/runtime/optwin.vim   Sat May  5 19:13:05 2007
17 --- runtime/optwin.vim  Mon May 12 22:30:28 2008
18 ***************
19 *** 1,7 ****
20   " These commands create the option window.
21   "
22   " Maintainer: Bram Moolenaar <Bram@vim.org>
23 ! " Last Change:        2006 Oct 10
24   
25   " If there already is an option window, jump to that one.
26   if bufwinnr("option-window") > 0
27 --- 1,7 ----
28   " These commands create the option window.
29   "
30   " Maintainer: Bram Moolenaar <Bram@vim.org>
31 ! " Last Change:        2008 May 12
32   
33   " If there already is an option window, jump to that one.
34   if bufwinnr("option-window") > 0
35 ***************
36 *** 147,153 ****
37   
38   " Open the window
39   new option-window
40 ! setlocal ts=15 tw=0
41   
42   " Insert help and a "set" command for each option.
43   call append(0, '" Each "set" line shows the current value of an option (on the left).')
44 --- 147,153 ----
45   
46   " Open the window
47   new option-window
48 ! setlocal ts=15 tw=0 noro
49   
50   " Insert help and a "set" command for each option.
51   call append(0, '" Each "set" line shows the current value of an option (on the left).')
52 ***************
53 *** 350,355 ****
54 --- 350,359 ----
55   call append("$", " \tset lines=" . &lines)
56   call append("$", "lazyredraw\tdon't redraw while executing macros")
57   call <SID>BinOptionG("lz", &lz)
58 + if has("reltime")
59 +   call append("$", "redrawtime\ttimeout for 'hlsearch' and :match highlighting in msec")
60 +   call append("$", " \tset rdt=" . &rdt)
61 + endif
62   call append("$", "writedelay\tdelay in msec for each char written to the display")
63   call append("$", "\t(for debugging)")
64   call append("$", " \tset wd=" . &wd)
65 *** ../vim-7.1.307/src/version.c        Wed Jun  4 13:33:15 2008
66 --- src/version.c       Wed Jun  4 14:27:16 2008
67 ***************
68 *** 668,669 ****
69 --- 673,676 ----
70   {   /* Add new patch number below this line */
71 + /**/
72 +     308,
73   /**/
74
75 -- 
76 Engineers are widely recognized as superior marriage material: intelligent,
77 dependable, employed, honest, and handy around the house.
78                                 (Scott Adams - The Dilbert principle)
79
80  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
81 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
82 \\\        download, build and distribute -- http://www.A-A-P.org        ///
83  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.030727 seconds and 3 git commands to generate.