blob: ade711a3e508cd77d32575d2b0c55757659f72e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
var tabWidth = 4;
var spaceIndent = true;
var indentWidth = 4;
var strIndentCharacters = " ";
var strIndentFiller = "";
var intStartLine = view.cursorLine();
var intStartColumn = view.cursorColumn();
var strTextLine = document.textLine( intStartLine );
var strPrevLine = document.textLine( intStartLine - 1 );
var addIndent = "";
function firstNonSpace( _text )
{
for( _i=0; _i < _text.length; _i++ )
{
_ch = _text.charAt( _i );
if( _ch != ' ' && _ch != '\t' )
return _i;
}
return -1;
}
function lastNonSpace( _text )
{
for( _i=_text.length - 1; _i >= 0; _i-- )
{
_ch = _text.charAt( _i );
if( _ch != ' ' && _ch != '\t' )
return _i;
}
return -1;
}
// if previous line ends with a '{' increase indent level
// if ( prevLine.search( /{\s*$/ ) != -1 )
// {
// if ( spaceIndent )
// addIndent = " ";
// else
// addIndent = "\t";
// }
// else
{
var intCurrentLine = intStartLine;
var openParenCount = 0;
var openBraceCount = 0;
label_while:
while ( intCurrentLine > 0 )
{
intCurrentLine--;
strCurrentLine = document.textLine( intCurrentLine );
intLastChar = lastNonSpace( strCurrentLine );
intFirstChar = firstNonSpace( strCurrentLine ) ;
if ( strCurrentLine.search( /\/\// ) == -1 )
{
// look through line backwards for interesting characters
for( intCurrentChar = intLastChar; intCurrentChar >= intFirstChar; --intCurrentChar )
{
ch = strCurrentLine.charAt( intCurrentChar );
switch( ch )
{
case '(': case '[':
if( ++openParenCount > 0 )
break label_while; //return calcIndentInBracket( begin, cur, pos );
break;
case ')': case ']': openParenCount--; break;
case '{':
if( ++openBraceCount > 0 )
break label_while; //return calcIndentInBrace( begin, cur, pos );
break;
case '}': openBraceCount--; lookingForScopeKeywords = false; break;
case ';':
if( openParenCount == 0 )
lookingForScopeKeywords = false;
break;
}
}
}
}
strIndentFiller += strCurrentLine.match(/^\s+/);
if ( strIndentFiller == "null" )
strIndentFiller = "";
debug( "line: " + intCurrentLine);
debug( openParenCount + ", " + openBraceCount);
while( openParenCount > 0 )
{
openParenCount--;
strIndentFiller += strIndentCharacters;
}
while( openBraceCount > 0 )
{
openBraceCount--;
strIndentFiller += strIndentCharacters;
}
}
document.insertText( intStartLine, 0, strIndentFiller );
view.setCursorPositionReal( intStartLine, document.textLine( intStartLine ).length );
|