Auto merge of #3006 - micbou:fix-diacritic-table, r=puremourning
[READY] Fix smart matching example in documentation The smart matching example is wrong: `o` can't match `ø` because `ø` is a letter on its own, not a `o` with a combining mark. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/valloric/youcompleteme/3006) <!-- Reviewable:end -->
This commit is contained in:
commit
d665f817ea
@ -866,9 +866,9 @@ letter with or without marks:
|
|||||||
<tr>
|
<tr>
|
||||||
<th>matches</th>
|
<th>matches</th>
|
||||||
<th>foo</th>
|
<th>foo</th>
|
||||||
<th>føo</th>
|
<th>fôo</th>
|
||||||
<th>fOo</th>
|
<th>fOo</th>
|
||||||
<th>fØo</th>
|
<th>fÔo</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>foo</th>
|
<th>foo</th>
|
||||||
@ -878,7 +878,7 @@ letter with or without marks:
|
|||||||
<td>✔️</td>
|
<td>✔️</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>føo</th>
|
<th>fôo</th>
|
||||||
<td>❌</td>
|
<td>❌</td>
|
||||||
<td>✔️</td>
|
<td>✔️</td>
|
||||||
<td>❌</td>
|
<td>❌</td>
|
||||||
@ -892,7 +892,7 @@ letter with or without marks:
|
|||||||
<td>✔️</td>
|
<td>✔️</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>fØo</th>
|
<th>fÔo</th>
|
||||||
<td>❌</td>
|
<td>❌</td>
|
||||||
<td>❌</td>
|
<td>❌</td>
|
||||||
<td>❌</td>
|
<td>❌</td>
|
||||||
|
@ -1118,15 +1118,15 @@ both). On top of that, a letter with no diacritic marks will match that letter
|
|||||||
with or without marks:
|
with or without marks:
|
||||||
|
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
| _matches_ | _foo_ | _føo_ | _fOo_ | _fØo_ |
|
| _matches_ | _foo_ | _fôo_ | _fOo_ | _fÔo_ |
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
| _foo_ | ✔️ | ✔️ | ✔️ | ✔️ |
|
| _foo_ | ✔️ | ✔️ | ✔️ | ✔️ |
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
| _føo_ | ❌ | ✔️ | ❌ | ✔️ |
|
| _fôo_ | ❌ | ✔️ | ❌ | ✔️ |
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
| _fOo_ | ❌ | ❌ | ✔️ | ✔️ |
|
| _fOo_ | ❌ | ❌ | ✔️ | ✔️ |
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
| _fØo_ | ❌ | ❌ | ❌ | ✔️ |
|
| _fÔo_ | ❌ | ❌ | ❌ | ✔️ |
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user