Conflicts:
	lib/ace/scrollbar.js
	lib/ace/virtual_renderer.js
This commit is contained in:
Joe Walker 2010-12-03 16:31:37 +00:00
commit 1e01007990
6 changed files with 10 additions and 9 deletions

View file

@ -80,7 +80,7 @@ exports.bindings = {
"selectlinestart": "Shift-Home",
"selectlineend": "Shift-End",
"del": "Delete",
"backspace": "Backspace",
"backspace": "Ctrl-Backspace|Command-Backspace|Option-Backspace|Backspace",
"outdent": "Shift-Tab",
"indent": "Tab"
};

View file

@ -64,7 +64,7 @@ var Editor =function(renderer, doc) {
return event.preventDefault(e);
});
var mouseTarget = renderer.getMouseEventTarget();
var mouseTarget = renderer.getMouseEventTarget();
event.addListener(mouseTarget, "mousedown", lang.bind(this.onMouseDown, this));
event.addMultiMouseDownListener(mouseTarget, 0, 2, 500, lang.bind(this.onMouseDoubleClick, this));
event.addMultiMouseDownListener(mouseTarget, 0, 3, 600, lang.bind(this.onMouseTripleClick, this));
@ -454,7 +454,7 @@ var Editor =function(renderer, doc) {
indent += 1;
else
break;
if (/[^\s]$/.test(line))
if (/[^\s]/.test(line))
minIndent = Math.min(indent, minIndent);
}

View file

@ -146,7 +146,7 @@ var Text = function(parentEl) {
this.updateLines = function(layerConfig, firstRow, lastRow) {
this.$computeTabString();
this.config = layerConfig;
var first = Math.max(firstRow, layerConfig.firstRow);
var last = Math.min(lastRow, layerConfig.lastRow);

View file

@ -48,16 +48,17 @@ var RenderLoop = function(onRender) {
(function() {
this.schedule = function(change) {
// this.onRender(change);
// return;
//this.onRender(change);
//return;
this.changes = this.changes | change;
if (!this.pending) {
this.pending = true;
var _self = this;
this.setTimeoutZero(function() {
_self.pending = false;
_self.onRender(_self.changes);
var changes = _self.changes;
_self.changes = 0;
_self.onRender(changes);
})
}
};

View file

@ -62,7 +62,7 @@ var ScrollBar = function(parent) {
oop.implement(this, EventEmitter);
this.onScroll = function() {
this._dispatchEvent("scroll", {data: this.element.scrollTop});
this.$dispatchEvent("scroll", {data: this.element.scrollTop});
};
this.getWidth = function() {

View file

@ -332,7 +332,7 @@ var VirtualRenderer = function(container, theme) {
this.$renderChanges = function(changes) {
if (!changes || !this.doc || !this.$tokenizer)
return;
// text, scrolling and resize changes can cause the view port size to change
if (!this.layerConfig ||
changes & this.CHANGE_FULL ||