Sublime Forum

"Expand selection to word" case-sensitively

#1

I really like the Command+D “Expand selection to word” feature of Sublime, but I want it to select case-sensitively. Is there a way to set this?

Example:

    label = add_view UILabel.alloc.initWithFrame(CGRectZero), {
      text: "Working...",
      font: UIFont.systemFontOfSize(18),
      textColor: UIColor.blackColor
    }
    label

Selecting “label” and hitting Command+D shouldn’t select “Label” in UILabel.

Thanks,
Jamon

0 Likes

#2

I realize this is a very old post, but I’m still looking for this functionality. Does anyone know about this?

0 Likes

#3

#SelectExact ?

 

I use WordHighlight, which has a case_sensitive setting, but it only works if you’re selecting all instances of a word.

0 Likes