fix tests

This commit is contained in:
nightwing 2013-08-26 22:41:29 +04:00
commit e2b2f08c24
3 changed files with 9 additions and 17 deletions

View file

@ -273,7 +273,7 @@ function Folding() {
// --- Some checking ---
if (!(startRow < endRow ||
startRow == endRow && startColumn < endColumn - 2))
startRow == endRow && startColumn <= endColumn - 2))
throw "The range has to be at least 2 characters width";
var startFold = this.getFoldAt(startRow, startColumn, 1);

View file

@ -14,16 +14,12 @@
["text"," "],
["keyword.command.dosbatch","set"],
["text"," var1="],
["markup.list","%"],
["constant.other","cd"],
["markup.list","%"]
["constant.numeric","%cd%"]
],[
"start",
["keyword.command.dosbatch","echo"],
["text"," unhide everything in "],
["markup.list","%"],
["constant.other","var1"],
["markup.list","%"],
["constant.numeric","%var1%"],
["text","!"]
],[
"start"
@ -46,19 +42,13 @@
"start",
["keyword.command.dosbatch","echo"],
["text"," "],
["markup.list","%"],
["constant.other","var1"],
["markup.list","%"],
["constant.numeric","%%G"]
["constant.numeric","%var1%%%G"]
],[
"start",
["keyword.command.dosbatch","attrib"],
["text"," -r -a -h -s "],
["punctuation.definition.string.begin.shell","\""],
["markup.list","%"],
["constant.other","var1"],
["markup.list","%"],
["constant.numeric","%%G"],
["constant.numeric","%var1%%%G"],
["punctuation.definition.string.end.shell","\""],
["text"," /D /S"]
],[

View file

@ -50,8 +50,10 @@ var MouseHandler = function(editor) {
event.addListener(mouseTarget, "click", this.onMouseEvent.bind(this, "click"));
event.addListener(mouseTarget, "mousemove", this.onMouseMove.bind(this, "mousemove"));
event.addMultiMouseDownListener(mouseTarget, [300, 300, 250], this, "onMouseEvent");
event.addMultiMouseDownListener(editor.renderer.scrollBarV.inner, [300, 300, 250], this, "onMouseEvent");
event.addMultiMouseDownListener(editor.renderer.scrollBarH.inner, [300, 300, 250], this, "onMouseEvent");
if (editor.renderer.scrollBarV) {
event.addMultiMouseDownListener(editor.renderer.scrollBarV.inner, [300, 300, 250], this, "onMouseEvent");
event.addMultiMouseDownListener(editor.renderer.scrollBarH.inner, [300, 300, 250], this, "onMouseEvent");
}
event.addMouseWheelListener(editor.container, this.onMouseWheel.bind(this, "mousewheel"));
var gutterEl = editor.renderer.$gutter;