Monday, June 13, 2016

Re: Spellcheck after Ellipsis again

The full 3-dot ellipsis exists in Unicode as U+2026 or decimal 8230.
AFAIK there is no default digraph for it, but of course that doesn't
preclude defining one in your vimrc. I use the following in mine:

if has('digraphs') && has('multi_byte')
dig ** 8226 " • U+2022 BULLET
dig ,, 8230 " … U+2026 HORIZONTAL ELLIPSIS
" dig ff 64256 " ff U+FB00 LATIN SMALL LIGATURE FF the commented ones
" dig fi 64257 " fi U+FB01 LATIN SMALL LIGATURE FI exist by default
" dig fl 64258 " fl U+FB02 LATIN SMALL LIGATURE FL
dig qi 64259 " ffi U+FB03 LATIN SMALL LIGATURE FFI
dig ql 64260 " ffl U+FB04 LATIN SMALL LIGATURE FFL
" dig ft 64261 " ſt U+FB05 LATIN SMALL LIGATURE LONG S T
" dig st 64262 " st U+FB06 LATIN SMALL LIGATURE ST
endif

Best regards,
Tony.

On Mon, Jun 13, 2016 at 4:23 PM, Erik Christiansen
<dvalin@internode.on.net> wrote:
> On 13.06.16 14:45, David Woodfall wrote:
>> >Any ideas? (Other than renaming my txt files to tex)
>>
>> Actually, renaming doesn't work either. It seems that some things are
>> still spellchecked up the top of the document. If I put an ellipsis
>> near the end it's fine.
>>
>> Stumped...
>>
>> I'm sure there is a setting for how much of the buffer is checked, but
>> I haven't found it yet.
>
> When a problem just becomes more complex with additional effort, it can
> sometimes be worth considering alternatives. When I try substituting a
> two-dot 2/3 ellipsis, using the ^K.. digraph, vim spellchecking does not
> highlight an error.
>
> Eyeing the output of :dig, I was unable to spot a full 3-dot ellipsis,
> though ^K3. and ^K3_ did produce three dots at half character height,
> whatever they might be good for.
>
> Maybe there is a suitable digraph in there somewhere, and that could be
> mapped to Alt-E or whatever?
>
> Erik
>
> --
> --
> You received this message from the "vim_use" maillist.
> Do not top-post! Type your reply below the text you are replying to.
> For more information, visit http://www.vim.org/maillist.php
>
> ---
> You received this message because you are subscribed to the Google Groups "vim_use" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: