Sublime Forum

Ignore deleted tabstops

#1

Hi,

is it possible to tell sublime 2 to irgnore deleted tabstops? What I mean ist the following. When using the cl-snippet for java it generates the following

public class ClassName extends ClassNameA implements ClassNameB {

}

The problem for me is, that the first tabstop selects “extends ClassNameA” and the second would select “ClassNameA”. But when I delete “extends ClassNameA” end press Tab, I have to press Tab again to select “implements ClassNameB”. Although the tabstop for “ClassNameA” has ben deleted, sublime still jumps to that tabstop. So is it somehow possible to tell sublime to ignore those “deleted tabstops”? In TextMate this is standard and I liked the concept.

0 Likes

#2

any suggestions?

0 Likes

#3

I’m having the same issue. I have this Ruby snippet:

def initialize${1:(${2:*args})} $0 end

When the snippet is expanded, “(*args)” is highlighted. If I delete that, I expect to be able to hit tab to go into the method body, but it actually takes two tabs. Is there a way to fix this?

0 Likes