Sublime Forum

Mastering Auto-complete

#1
Sublime Version 3.2.2 Version 3211
HTML

When I type ul>li*3  I get the expect outcome and my cursor allows me to type a word then +tab to next list item if the word in lower case:
    <ol>
      <li>hi</li>
      <li>what</li>
      <li>is</li>
    </ol> 

But if the word is upper case, then +tab creates another tag.
    <ol>
      <li><Hi></Hi></li>
      <li><What></What></li>
      <li><Is></Is></li>
    </ol>

The problem also occurs if I type numbers. In the example below I typed the number 1.5 and I got a "class" tag.
    <ol>
      <li><1 class="5"></1></li>
      <li></li>
      <li></li>
    </ol>

How do I go about typing things like "Section 1.5" + tab to next list item?

I want to type the list below as quickly as possible:
    <ol>
      <li>Section 1.5</li>
      <li>Section 1.6</li>
      <li>Section 1.7</li>
    </ol>
0 Likes