|
Karsten Hopp |
f8cd3f |
To: vim-dev@vim.org
|
|
Karsten Hopp |
f8cd3f |
Subject: Patch 7.1.277
|
|
Karsten Hopp |
f8cd3f |
Fcc: outbox
|
|
Karsten Hopp |
f8cd3f |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
f8cd3f |
Mime-Version: 1.0
|
|
Karsten Hopp |
f8cd3f |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
f8cd3f |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
f8cd3f |
------------
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
Patch 7.1.277
|
|
Karsten Hopp |
f8cd3f |
Problem: Default for 'paragraphs' misses some items (Colin Watson)
|
|
Karsten Hopp |
f8cd3f |
Solution: Add TP, HP, Pp, Lp and It to 'paragraphs'. (James Vega)
|
|
Karsten Hopp |
f8cd3f |
Files: runtime/doc/options.txt, src/option.c
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
*** ../vim-7.1.276/runtime/doc/options.txt Sat Jan 19 15:55:51 2008
|
|
Karsten Hopp |
f8cd3f |
--- runtime/doc/options.txt Wed Mar 12 17:34:32 2008
|
|
Karsten Hopp |
f8cd3f |
***************
|
|
Karsten Hopp |
f8cd3f |
*** 1,4 ****
|
|
Karsten Hopp |
f8cd3f |
! *options.txt* For Vim version 7.1. Last change: 2007 Aug 10
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
VIM REFERENCE MANUAL by Bram Moolenaar
|
|
Karsten Hopp |
f8cd3f |
--- 1,4 ----
|
|
Karsten Hopp |
f8cd3f |
! *options.txt* For Vim version 7.1. Last change: 2008 Feb 24
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
VIM REFERENCE MANUAL by Bram Moolenaar
|
|
Karsten Hopp |
f8cd3f |
***************
|
|
Karsten Hopp |
f8cd3f |
*** 4878,4884 ****
|
|
Karsten Hopp |
f8cd3f |
|autocmd-osfiletypes|
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
*'paragraphs'* *'para'*
|
|
Karsten Hopp |
f8cd3f |
! 'paragraphs' 'para' string (default "IPLPPPQPP LIpplpipbp")
|
|
Karsten Hopp |
f8cd3f |
global
|
|
Karsten Hopp |
f8cd3f |
Specifies the nroff macros that separate paragraphs. These are pairs
|
|
Karsten Hopp |
f8cd3f |
of two letters (see |object-motions|).
|
|
Karsten Hopp |
f8cd3f |
--- 4901,4907 ----
|
|
Karsten Hopp |
f8cd3f |
|autocmd-osfiletypes|
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
*'paragraphs'* *'para'*
|
|
Karsten Hopp |
f8cd3f |
! 'paragraphs' 'para' string (default "IPLPPPQPP TPHPLIPpLpItpplpipbp")
|
|
Karsten Hopp |
f8cd3f |
global
|
|
Karsten Hopp |
f8cd3f |
Specifies the nroff macros that separate paragraphs. These are pairs
|
|
Karsten Hopp |
f8cd3f |
of two letters (see |object-motions|).
|
|
Karsten Hopp |
f8cd3f |
*** ../vim-7.1.276/src/option.c Wed Feb 13 18:35:23 2008
|
|
Karsten Hopp |
f8cd3f |
--- src/option.c Wed Mar 12 17:34:32 2008
|
|
Karsten Hopp |
f8cd3f |
***************
|
|
Karsten Hopp |
f8cd3f |
*** 1839,1845 ****
|
|
Karsten Hopp |
f8cd3f |
},
|
|
Karsten Hopp |
f8cd3f |
{"paragraphs", "para", P_STRING|P_VI_DEF,
|
|
Karsten Hopp |
f8cd3f |
(char_u *)&p_para, PV_NONE,
|
|
Karsten Hopp |
f8cd3f |
! {(char_u *)"IPLPPPQPP LIpplpipbp", (char_u *)0L}},
|
|
Karsten Hopp |
f8cd3f |
{"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
|
|
Karsten Hopp |
f8cd3f |
(char_u *)&p_paste, PV_NONE,
|
|
Karsten Hopp |
f8cd3f |
{(char_u *)FALSE, (char_u *)0L}},
|
|
Karsten Hopp |
f8cd3f |
--- 1839,1846 ----
|
|
Karsten Hopp |
f8cd3f |
},
|
|
Karsten Hopp |
f8cd3f |
{"paragraphs", "para", P_STRING|P_VI_DEF,
|
|
Karsten Hopp |
f8cd3f |
(char_u *)&p_para, PV_NONE,
|
|
Karsten Hopp |
f8cd3f |
! {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
|
|
Karsten Hopp |
f8cd3f |
! (char_u *)0L}},
|
|
Karsten Hopp |
f8cd3f |
{"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC,
|
|
Karsten Hopp |
f8cd3f |
(char_u *)&p_paste, PV_NONE,
|
|
Karsten Hopp |
f8cd3f |
{(char_u *)FALSE, (char_u *)0L}},
|
|
Karsten Hopp |
f8cd3f |
*** ../vim-7.1.276/src/version.c Wed Mar 12 17:25:50 2008
|
|
Karsten Hopp |
f8cd3f |
--- src/version.c Wed Mar 12 17:35:14 2008
|
|
Karsten Hopp |
f8cd3f |
***************
|
|
Karsten Hopp |
f8cd3f |
*** 668,669 ****
|
|
Karsten Hopp |
f8cd3f |
--- 668,671 ----
|
|
Karsten Hopp |
f8cd3f |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
f8cd3f |
+ /**/
|
|
Karsten Hopp |
f8cd3f |
+ 277,
|
|
Karsten Hopp |
f8cd3f |
/**/
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
--
|
|
Karsten Hopp |
f8cd3f |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
f8cd3f |
119. You are reading a book and look for the scroll bar to get to
|
|
Karsten Hopp |
f8cd3f |
the next page.
|
|
Karsten Hopp |
f8cd3f |
|
|
Karsten Hopp |
f8cd3f |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
f8cd3f |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
f8cd3f |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
f8cd3f |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|