| /plugin/syntaxhighlighter4/ |
| D | action.php | 79 $tabSize = $this->getConf('tabSize'); 80 if ($tabSize > 0) { 81 ptln(' tabSize: '.$tabSize.',');
|
| D | README.md | 51 * **tabSize**: Allows you to adjust tab size `(default 4)`
|
| /plugin/syntaxhighlighter3/action/ |
| D | action.php | 104 $tabSize = $this->getConf('tab-size'); 105 if ($tabSize > 0) {
|
| /plugin/behave/ |
| D | behave.js | 90 tabSize: 4, property 157 defineTabSize: function(tabSize){ argument 159 defaults.textarea.style.OTabSize = tabSize; return; 162 defaults.textarea.style.MozTabSize = tabSize; return; 164 if(typeof defaults.textarea.style.tabSize != "undefined"){ 165 defaults.textarea.style.tabSize = tabSize; return; 594 tab = " ".repeat(defaults.tabSize); 598 utils.defineTabSize(defaults.tabSize);
|
| D | script.js | 15 tabSize: 4, property
|
| /plugin/autotabber/ |
| D | script.js | 12 tabOverride.set(textareas).tabSize(0).autoIndent(true).escape(true);
|
| D | README.md | 13 * An integer at tabSize sets the number of spaces to be used in a tab press
|
| D | taboverride.js | 732 tabOverride.tabSize = function (size) {
|
| /plugin/asciidocjs/node_modules/acorn/src/loose/ |
| D | index.js | 40 defaultOptions.tabSize = 4
|
| D | state.js | 130 else if (ch === 9) count += this.options.tabSize
|
| /plugin/syntaxhighlighter3/sxh3/src/js/ |
| D | shCore.js | 839 function processTabs(code, tabSize) argument 843 for (var i = 0; i < tabSize; i++) 856 function processSmartTabs(code, tabSize) argument 891 var spaces = tabSize - pos % tabSize; 1550 tabSize, 1577 tabSize = this.getParam('tab-size'); 1581 ? processSmartTabs(code, tabSize) 1582 : processTabs(code, tabSize)
|
| /plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/ |
| D | index.js | 40 acorn.defaultOptions.tabSize = 4
|
| D | state.js | 129 else if (ch === 9) count += this.options.tabSize
|
| /plugin/syntaxhighlighter/Scripts/ |
| D | shCore.js | 73 {var lines=code.split('\n');var result='';var tabSize=4;var tab='\t';function InsertSpaces(line,pos… 76 function ProcessLine(line,tabSize) argument 79 {var spaces=tabSize-pos%tabSize;line=InsertSpaces(line,pos,spaces);} 82 result+=ProcessLine(lines[i],tabSize)+'\n';return result;}
|
| /plugin/syntaxhighlighter/Uncompressed/ |
| D | shCore.js | 341 var tabSize = 4; 359 function ProcessLine(line, tabSize) argument 371 var spaces = tabSize - pos % tabSize; 381 result += ProcessLine(lines[i], tabSize) + '\n';
|
| /plugin/jquery-syntax/jquery-syntax/ |
| D | jquery.syntax.core.js | 13 …rtTabsToSpaces=function(text,tabSize){var space=[],pattern=/\r|\n|\t/g,tabOffset=0,offsets=[],tota… argument 14 for(var i="";i.length<=tabSize;i=i+" "){space.push(i);} 15 …=="\n"){tabOffset=-(offset+1);return match;}else{var width=tabSize-((tabOffset+offset)%tabSize);ta…
|
| /plugin/syntaxhighlighter3/sxh3/pkg/scripts/ |
| D | shCore.js | 2120 function processTabs(code, tabSize) argument 2124 for (var i = 0; i < tabSize; i++) 2137 function processSmartTabs(code, tabSize) argument 2172 var spaces = tabSize - pos % tabSize; 2831 tabSize, 2858 tabSize = this.getParam('tab-size'); 2862 ? processSmartTabs(code, tabSize) 2863 : processTabs(code, tabSize)
|
| /plugin/projects/ |
| D | codemirror-compressed.js | 1 …tabSize),o=r.text.match(/^\s*/)[0],u;t=="smart"&&(u=Nt.indent(n,r.text.slice(o.length),r.text),u==… property
|
| /plugin/asciidocjs/node_modules/acorn/dist/ |
| D | acorn_loose.es.js | 135 else if (ch === 9) count += this$1.options.tabSize
|
| D | acorn_loose.js | 139 else if (ch === 9) count += this$1.options.tabSize
|
| /plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/ |
| D | acorn_loose.es.js | 134 else if (ch === 9) count += this$1.options.tabSize
|
| D | acorn_loose.js | 140 else if (ch === 9) count += this$1.options.tabSize
|
| /plugin/syntaxhighlighter4/dist/ |
| D | syntaxhighlighter.js | 2971 var tabSize = opts['tab-size']; 2972 …de = opts['smart-tabs'] === true ? retabber.smart(code, tabSize) : retabber.regular(code, tabSize); 3086 smart: function smart(code, tabSize) { 3106 line = insertSpaces(line, pos, tabSize - pos % tabSize); 3115 regular: function regular(code, tabSize) { 3116 return code.replace(/\t/g, spaces.substr(0, tabSize));
|
| /plugin/codemirror/dist/modes/ |
| D | slim.min.js | 1 …;return null}var d=new a.StringStream(b.string.slice(c.stack.indented),b.tabSize);d.pos=b.pos-c.st…
|
| /plugin/dirtylittlehelper/mermaid/editor/docs/ |
| D | 70.70.js | 1 …nction(e){return{ConvertTabsToSpaces:e.insertSpaces,TabSize:e.tabSize,IndentSize:e.tabSize,IndentS…
|