HomeSort by relevance Sort by last modified time
    Searched defs:CodeMirror (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CodeMirrorTextEditor.js 31 importScript("cm/codemirror.js");
63 this.registerRequiredCSS("cm/codemirror.css");
66 this._codeMirror = window.CodeMirror(this.element, {
68 gutters: ["CodeMirror-linenumbers"],
77 CodeMirror.keyMap["devtools-common"] = {
94 CodeMirror.keyMap["devtools-pc"] = {
113 CodeMirror.keyMap["devtools-mac"] = {
174 WebInspector.CodeMirrorTextEditor.autocompleteCommand = function(codeMirror)
176 codeMirror._codeMirrorTextEditor._autocompleteController.autocomplete();
178 CodeMirror.commands.autocomplete = WebInspector.CodeMirrorTextEditor.autocompleteCommand
    [all...]
externs.js 387 var CodeMirror = function() { }
388 CodeMirror.on = function(obj, type, handler) { }
389 CodeMirror.prototype = {
495 CodeMirror.prototype.lineCount;
496 CodeMirror.Pass;
497 CodeMirror.showHint = function(codeMirror, hintintFunction) { };
498 CodeMirror.commands = {};
499 CodeMirror.modes = {};
500 CodeMirror.mimeModes = {}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
comment.js 6 var Pos = CodeMirror.Pos;
13 CodeMirror.commands.toggleComment = function(cm) {
18 CodeMirror.defineExtension("lineComment", function(from, to, options) {
20 var self = this, mode = CodeMirror.innerMode(self.getMode(), self.getTokenAt(from).state).mode;
53 CodeMirror.defineExtension("blockComment", function(from, to, options) {
55 var self = this, mode = CodeMirror.innerMode(self.getMode(), self.getTokenAt(from).state).mode;
86 CodeMirror.defineExtension("uncomment", function(from, to, options) {
88 var self = this, mode = CodeMirror.innerMode(self.getMode(), self.getTokenAt(from).state).mode;

Completed in 197 milliseconds