|  01-11-2012, 04:57 PM | #31 | 
| eBook FANatic            Posts: 18,301 Karma: 16078357 Join Date: Apr 2008 Location: Alabama, USA Device: HP ipac RX5915 Wife's Kindle | 
			
			Is there a way to turn the dictionary off??? I guess that I should be more explicit. Is there a way to toggle the dictionary display on/off? The highlighted words can be distracting when you are working on something else. Last edited by crutledge; 01-12-2012 at 08:56 AM. | 
|   | 
|  01-11-2012, 05:39 PM | #32 | 
| Well trained by Cats            Posts: 31,249 Karma: 61360164 Join Date: Aug 2009 Location: The Central Coast of California Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A | 
			
			Is there a way to write a REGEX that only matches words the dictionary highlights?
		 | 
|   | 
|  01-11-2012, 06:26 PM | #33 | 
| Sigil developer            Posts: 1,274 Karma: 1101600 Join Date: Jan 2011 Location: UK Device: Kindle PW, K4 NT, K3, Kobo Touch | |
|   | 
|  01-11-2012, 06:28 PM | #34 | 
| Sigil developer            Posts: 1,274 Karma: 1101600 Join Date: Jan 2011 Location: UK Device: Kindle PW, K4 NT, K3, Kobo Touch | 
			
			Have no idea (unlikely though), but interesting idea.  I was thinking about a spellcheck button that lists the lines with errors in them, but modifying Find in some way to find the next mis-spelled word is another approach worth considering.
		 | 
|   | 
|  01-11-2012, 06:35 PM | #35 | |
| Evangelist            Posts: 416 Karma: 1045911 Join Date: Sep 2011 Location: Cape Town, South Africa Device: Kindle 3 | Quote: 
   | |
|   | 
|  01-11-2012, 06:38 PM | #36 | |
| Well trained by Cats            Posts: 31,249 Karma: 61360164 Join Date: Aug 2009 Location: The Central Coast of California Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A | Quote: 
   | |
|   | 
|  01-11-2012, 07:10 PM | #37 | |
| Sigil & calibre developer            Posts: 2,487 Karma: 1063785 Join Date: Jan 2009 Location: Florida, USA Device: Nook STR | Quote: 
 Wrapping in some form will come back in a later version. | |
|   | 
|  01-12-2012, 01:15 AM | #38 | 
| ♫            Posts: 661 Karma: 506380 Join Date: Aug 2010 Location: Germany Device: Kobo Aura / PB Lux 2 / Bookeen Frontlight / Kobo Mini / Nook Color | 
			
			Don't you find those with a search for "MDash\B" ?
		 Last edited by WS64; 01-12-2012 at 05:24 AM. | 
|   | 
|  01-12-2012, 02:09 AM | #39 | 
| Wizard            Posts: 4,520 Karma: 121692313 Join Date: Oct 2009 Location: Heemskerk, NL Device: PRS-T1, Kobo Touch, Kobo Aura | 
			
			I heard about an error, which I have not been able to reproduce yet. I can't reproduce, because I don't have a source in which the error is. I have asked for the file though. It seems that Sigil will crash when a word contains the HTML entity . That entity is not visible, but apparently the word is indicated is misspelled. When after right-clicking on the word the correct spelling is chosen, Sigil crashes. I will try to reproduce, but at the moment if I use  it doesn't get converted to a HTML entity. | 
|   | 
|  01-12-2012, 08:55 AM | #40 | 
| Well trained by Cats            Posts: 31,249 Karma: 61360164 Join Date: Aug 2009 Location: The Central Coast of California Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A | 
			
			\B is a dictionary based word boundary? 1)They are no longer Mdash (they got mangled in OCR/conversion). 2)How to tell the difference between a hyphenated words and a Mdash run-together? Spelling. Visually 1 or both sides of the dash fail spell check (and a few pass completely  ) | 
|   | 
|  01-12-2012, 09:35 AM | #41 | |
| ♫            Posts: 661 Karma: 506380 Join Date: Aug 2010 Location: Germany Device: Kobo Aura / PB Lux 2 / Bookeen Frontlight / Kobo Mini / Nook Color | Quote: 
 I thought you meant "– bla" was fine and "–bla" was not, and with –\B you should find "–bla" But actually I am wrong, you need \b (although I do not understand why), so "–\b" will find "–bla". Of course if – got replaced by - this will not really work anymore | |
|   | 
|  01-12-2012, 10:08 AM | #42 | |
| Well trained by Cats            Posts: 31,249 Karma: 61360164 Join Date: Aug 2009 Location: The Central Coast of California Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A | Quote: 
 I want another 'AND' condition: Spelling error, since -\b is valid in many, many, cases. | |
|   | 
|  01-12-2012, 12:45 PM | #43 | 
| Jr. - Junior Member            Posts: 586 Karma: 2000358 Join Date: Aug 2010 Location: Alabama Device: Archos, Asus, HP, Lenovo, Nexus and Samsung tablets in 7,8 and 10" | 
			
			If I had my druthers, the options would be; start from top or start from cursor.  In either case, it would not wrap. Regards - John Last edited by Jabby; 01-12-2012 at 01:20 PM. | 
|   | 
|  01-12-2012, 07:31 PM | #44 | 
| Fanatic            Posts: 502 Karma: 65460 Join Date: Jun 2011 Device: Kindle | 
			
			Okay, found something else: the expression (.*) is not capturing strings that are longer than one line of code. For example: a search for Code: <div[^>]*>(.*)</div> Code:     <div class="s1">
      <h4 class="calibre3" id="heading_id_2"><span class="none">Chapter 2.</span></h4>
      <h4 class="calibre3" id="heading_id_3"></h4>
    </div> | 
|   | 
|  01-12-2012, 08:11 PM | #45 | 
| Evangelist            Posts: 416 Karma: 1045911 Join Date: Sep 2011 Location: Cape Town, South Africa Device: Kindle 3 | |
|   | 
|  | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| KinCleaner 1.1 Beta | SteveEisenberg | Kindle Developer's Corner | 0 | 12-20-2011 10:39 PM | 
| New Beta for BB? | FF2 | Amazon Kindle | 2 | 05-28-2011 10:21 AM | 
| Beta Beta Test of Major New Features | Starson17 | Calibre | 45 | 05-17-2010 10:55 AM | 
| 0.6 out of beta? | Nate the great | Calibre | 3 | 07-17-2009 02:45 AM |