atg / chocolat-public

Public bug tracker for the private chocolat project
http://chocolatapp.com
180 stars 4 forks source link

Tabstops stay active #1693

Closed tobiastom closed 9 years ago

tobiastom commented 9 years ago

When I create a new snippet with multiple tabletops, like this:

%{1="public"} function %{2}(%{3}) {
    %{4}
}

I can access all tabstops with TAB – which is nice. When I enter multiple lines on tabstop %{4}, and try to indent some lines with TAB, the text I just entered will get selected and I cannot add some indentation to the line.

tabstop

atg commented 9 years ago

try this

%{1="public"} function %{2}(%{3}) {
    %{0}
}
tobiastom commented 9 years ago

Seems to work. Why? :)