Message from discussion
Getting a line to wrap/reformatting paragraphs
Received: by 10.224.185.11 with SMTP id cm11mr4086511qab.3.1330362529982;
Mon, 27 Feb 2012 09:08:49 -0800 (PST)
X-BeenThere: vimorganizer@googlegroups.com
Received: by 10.229.66.215 with SMTP id o23ls9449768qci.2.gmail; Mon, 27 Feb
2012 09:08:48 -0800 (PST)
Received: by 10.236.103.68 with SMTP id e44mr18138918yhg.3.1330362528682;
Mon, 27 Feb 2012 09:08:48 -0800 (PST)
Received: by 10.236.103.68 with SMTP id e44mr18138917yhg.3.1330362528672;
Mon, 27 Feb 2012 09:08:48 -0800 (PST)
Return-Path: <hes...@gmail.com>
Received: from mail-gy0-f178.google.com (mail-gy0-f178.google.com [209.85.160.178])
by gmr-mx.google.com with ESMTPS id g49si8684361yhe.6.2012.02.27.09.08.48
(version=TLSv1/SSLv3 cipher=OTHER);
Mon, 27 Feb 2012 09:08:48 -0800 (PST)
Received-SPF: pass (google.com: domain of hes...@gmail.com designates 209.85.160.178 as permitted sender) client-ip=209.85.160.178;
Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of hes...@gmail.com designates 209.85.160.178 as permitted sender) smtp.mail=hes...@gmail.com; dkim=pass header...@gmail.com
Received: by mail-gy0-f178.google.com with SMTP id f1so477078ghb.23
for <vimorganizer@googlegroups.com>; Mon, 27 Feb 2012 09:08:48 -0800 (PST)
Return-Path: <hes...@gmail.com>
Received-SPF: pass (google.com: domain of hes...@gmail.com designates 10.50.216.201 as permitted sender) client-ip=10.50.216.201;
Received: from mr.google.com ([10.50.216.201])
by 10.50.216.201 with SMTP id os9mr19070911igc.22.1330362528583 (num_hops = 1);
Mon, 27 Feb 2012 09:08:48 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=gamma;
h=mime-version:reply-to:in-reply-to:references:date:message-id
:subject:from:to:content-type:content-transfer-encoding;
bh=/kZ8nG41GFca6YCMPAGJ7606+JB+2cC3c/EHe5DoluM=;
b=rjYyC9Hm7L829gbtUOVozH15ASMza57JoKsnyC+CSdu5dvBMxQsNNHM0p8COzzO6TH
Bk1N8Cbf4ZJ6R+y9S+KLIvNcaFLDn0RTmy0MXF/tyBe8R972RSCgFJa6msZNW9JeThTU
Nemeip6oBMVuAJ1M3tBKWFZjQrf2+FKVgFNKE=
MIME-Version: 1.0
Received: by 10.50.216.201 with SMTP id os9mr15488437igc.22.1330362528543;
Mon, 27 Feb 2012 09:08:48 -0800 (PST)
Received: by 10.231.154.5 with HTTP; Mon, 27 Feb 2012 09:08:48 -0800 (PST)
Reply-To: hes...@gmail.com
In-Reply-To: <61DB1C4F-0E5E-47E4-9086-8E0A8BD93...@bellsouth.net>
References: <F37CCB6F-01B8-4712-B1BD-204BE035E...@bellsouth.net>
<CAEKBWvzW4Gh+Rvh4kH4DfCejD3djCs1v-++cMfG1pkFsW4V...@mail.gmail.com>
<CAEKBWvz2-hwNu3g5uUQ=_zmOvuZsebq_2Tbfa3vW6JB3YZ_...@mail.gmail.com>
<32866E89-0AC0-475F-955E-B7BF9794F...@bellsouth.net>
<CAEKBWvxfDVzxF7Wei=xncqBnSO0gCcU3YFCmvqpzUbhWni4...@mail.gmail.com>
<A2C914DD-F885-454D-A4F0-3967B3CB0...@bellsouth.net>
<61DB1C4F-0E5E-47E4-9086-8E0A8BD93...@bellsouth.net>
Date: Mon, 27 Feb 2012 09:08:48 -0800
Message-ID: <CAEKBWvxPHRNotxzLpNvCxWaKpg5oa+oA63-2oBLG2f-P-LW...@mail.gmail.com>
Subject: Re: Getting a line to wrap/reformatting paragraphs
From: Herbert Sitz <hes...@gmail.com>
To: vimorganizer@googlegroups.com
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
On Sat, Feb 25, 2012 at 6:14 AM, Eric Weir <eew...@bellsouth.net> wrote:
>
> On Feb 25, 2012, at 7:20 AM, Eric Weir wrote:
>
>> When I put this in my .vimrc, as below, I lose highlighting of vimorgani=
zer syntax in outlines. Folding commands work but highlighting is lost.
>>
>> "insert end of paragraph marker
>> "set listchars+=3Deol:=B6
>> "highlight NonText guifg=3Dgray
>
> Also, don't get highlighting of the end-of-paragrah character.
>
Eric -- I don't know how it could have lost all highlighting, but
sorry I was wrong about the 'highlight NonText' command. You need to
put it in a spot where it gets executed every time color is changed in
an org buffer. So put this special function in your vimrc:
function! OrgCustomColors()
highlight NonText guifg=3Dgray
endfunction
***NOTE That function is already in sample vimrc shipped with
VimOrganizer but all lines were "commented out".
Also, I just added support for a new vimrc function (in new version at
github) where non-color/highlight related changes can be made that
will affect org buffers. This would be best place for change to
formatoptions talked about in previous message:
"**** put this in vimrc. . . ******
function! OrgCustomSettings()
set formatoptions+=3Da
endfunction
-- Herb