|
Project
|
IntelliJ IDEA
|
|
Priority
|
Normal |
|
Type
|
Bug |
|
Fix versions
|
No Fix versions |
|
State
|
Fixed |
|
Assignee
|
Alexey Kudravtsev |
|
Subsystem
|
J2EE.Spring |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
108.65 |
import org.aspectj.lang.annotation.Before;
@org.aspectj.lang.annotation.Aspect
public class Dummy {
@Before("@annotation(MyAnnotation) && args(n, ..)")
public void before(int n) {
System.out.println("n : " + n);
}
}
Query q4 = session.createQuery("from User user order by user.lastName asc, user.firstName asc");First Ctrl-Shift-F7 highlights all 3 "user" tokens
Second Ctrl-Shift-F7 removes highlighting from second and third "user" token, but not from the first.
In addition, IDEA-15507 (similar Ctrl-Shift-F7 problem with JavaScript injected in HTML) is probably a duplicate of this.