|
@@ -170,7 +170,8 @@ $(function() {
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
var handleSpaceKey = function(event) {
|
|
var handleSpaceKey = function(event) {
|
|
|
- if (event.shiftKey && event.altKey) {
|
|
|
|
|
|
|
+ // keybind: alt + shift + space
|
|
|
|
|
+ if (!(event.shiftKey && event.altKey)) {
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
var currentLine = getCurrentLine(event);
|
|
var currentLine = getCurrentLine(event);
|