scroll in table on home/end (IDEA-80396)

This commit is contained in:
Anna Kozlova
2012-01-26 22:08:13 +04:00
parent 4d381bd888
commit f6a8d4fb1b
@@ -272,6 +272,17 @@ public class TableScrollingUtil {
moveEnd(list);
}
}.registerCustomShortcutSet(new CustomShortcutSet(KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0)), list);
new AnAction() {
public void actionPerformed(AnActionEvent e) {
moveHome(list);
}
}.registerCustomShortcutSet(new CustomShortcutSet(KeyStroke.getKeyStroke(KeyEvent.VK_HOME, 0)), list);
new AnAction() {
public void actionPerformed(AnActionEvent e) {
moveEnd(list);
}
}.registerCustomShortcutSet(new CustomShortcutSet(KeyStroke.getKeyStroke(KeyEvent.VK_END, 0)), list);
}
}