Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 488257
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.client.editor/web/orion/editor/contentAssist.js (-1 / +1 lines)
Lines 300-306 Link Here
300
		/** @private */
300
		/** @private */
301
		getPrefixStart: function(model, end) {
301
		getPrefixStart: function(model, end) {
302
			var index = end;
302
			var index = end;
303
			while (index > 0 && /[A-Za-z0-9_=\"]/.test(model.getText(index - 1, index))) {
303
			while (index > 0 && /[A-Za-z0-9_]/.test(model.getText(index - 1, index))) {
304
				index--;
304
				index--;
305
			}
305
			}
306
			return index;
306
			return index;

Return to bug 488257