Home
last modified time | relevance | path

Searched refs:tabSize (Results 1 – 25 of 57) sorted by relevance

123

/plugin/syntaxhighlighter4/
Daction.php79 $tabSize = $this->getConf('tabSize');
80 if ($tabSize > 0) {
81 ptln(' tabSize: '.$tabSize.',');
DREADME.md51 * **tabSize**: Allows you to adjust tab size `(default 4)`
/plugin/syntaxhighlighter3/action/
Daction.php104 $tabSize = $this->getConf('tab-size');
105 if ($tabSize > 0) {
/plugin/behave/
Dbehave.js90 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);
Dscript.js15 tabSize: 4, property
/plugin/autotabber/
Dscript.js12 tabOverride.set(textareas).tabSize(0).autoIndent(true).escape(true);
DREADME.md13 * An integer at tabSize sets the number of spaces to be used in a tab press
Dtaboverride.js732 tabOverride.tabSize = function (size) {
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dindex.js40 defaultOptions.tabSize = 4
Dstate.js130 else if (ch === 9) count += this.options.tabSize
/plugin/syntaxhighlighter3/sxh3/src/js/
DshCore.js839 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/
Dindex.js40 acorn.defaultOptions.tabSize = 4
Dstate.js129 else if (ch === 9) count += this.options.tabSize
/plugin/syntaxhighlighter/Scripts/
DshCore.js73 {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/
DshCore.js341 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/
Djquery.syntax.core.js13 …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/
DshCore.js2120 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/
Dcodemirror-compressed.js1tabSize),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/
Dacorn_loose.es.js135 else if (ch === 9) count += this$1.options.tabSize
Dacorn_loose.js139 else if (ch === 9) count += this$1.options.tabSize
/plugin/asciidocjs/node_modules/with/node_modules/acorn/dist/
Dacorn_loose.es.js134 else if (ch === 9) count += this$1.options.tabSize
Dacorn_loose.js140 else if (ch === 9) count += this$1.options.tabSize
/plugin/syntaxhighlighter4/dist/
Dsyntaxhighlighter.js2971 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/
Dslim.min.js1 …;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/
D70.70.js1 …nction(e){return{ConvertTabsToSpaces:e.insertSpaces,TabSize:e.tabSize,IndentSize:e.tabSize,IndentS…

123