Message from discussion
Matching/Sorting line terminations
Received: by 10.66.76.169 with SMTP id l9mr3919181paw.47.1349029051779;
Sun, 30 Sep 2012 11:17:31 -0700 (PDT)
X-BeenThere: vim_use@googlegroups.com
Received: by 10.68.141.75 with SMTP id rm11ls20781438pbb.6.gmail; Sun, 30 Sep
2012 11:17:23 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.68.232.230 with SMTP id tr6mr3502543pbc.16.1349029043980; Sun,
30 Sep 2012 11:17:23 -0700 (PDT)
Authentication-Results: ls.google.com; spf=pass (google.com: domain of
fo...@calcentral.com designates internal as permitted sender)
smtp.mail=fo...@calcentral.com; dkim=pass
header...@calcentral.com
Received: by k13g2000pbq.googlegroups.com with HTTP; Sun, 30 Sep 2012 11:17:23
-0700 (PDT)
Date: Sun, 30 Sep 2012 11:17:23 -0700 (PDT)
In-Reply-To: <CAJ-8Gaha=Od3vh+Um7z0c60o=K0Y2c9yQuc5vH8AjLsx0Ldc2w@mail.gmail.com>
References: <CAJ-8Gaha=Od3vh+Um7z0c60o=K0Y2c9yQuc5vH8AjLsx0Ldc2w@mail.gmail.com>
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_4_11; en)
AppleWebKit/533.19.4 (KHTML, like Gecko) Version/4.1.3 Safari/533.19.4,gzip(gfe)
Message-ID: <97d97ee4-3041-46dd-b852-b55daeb8183a@k13g2000pbq.googlegroups.com>
Subject: Re: Matching/Sorting line terminations
From: Bee <fo...@calcentral.com>
To: vim_use <vim_use@googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
On Sep 30, 9:14=A0am, jbl <lethbri...@jblethbridge.com> wrote:
> The problem is this: I have a large file of poetry in
> alphabetical order sorted on the last term in each line,
This will sort the lines by the last term:
sort ir /\w\+$/
:help :sort
Bill