This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Description
Put this code into a .css file:
div {
color: blue;
}
div{
color: green;
}
- Open 'Go to Definition' (Ctrl+T)
- Select each of the results in turn
Result:
For the first rule, the entire "div" is selected in the editor.
For the second rule, only "di" is selected -- the "v" lies outside the selection.
(Similar bug happens for longer selectors too; the last 1 char is always left out)
Expected:
Entire text of selector is selected in both cases.