Index: src/sdk/cbeditor.cpp
===================================================================
--- src/sdk/cbeditor.cpp (revision 6196)
+++ src/sdk/cbeditor.cpp (working copy)
@@ -414,6 +414,21 @@
control->GotoPos(pos);
if (ch == _T('{'))
{
+ int curLine = control->GetCurrentLine();
+ int keyLine = curLine;
+ wxString text;
+ do
+ {
+ int keyPos = control->GetLineIndentPosition(keyLine);
+ int start = control->WordStartPosition(keyPos, true);
+ int end = control->WordEndPosition(keyPos, true);
+ text = control->GetTextRange(start, end);
+ }
+ while (text.IsEmpty() && --keyLine);
+
+ if (text == _T("class") || text == _T("struct"))
+ control->InsertText(control->GetLineEndPosition(curLine), _T(";"));
+
const wxRegEx reg(_T("^[ \t]*{}[ \t]*"));
if (reg.Matches(control->GetCurLine()))
{
Example, this code:
class A {|}
class B
{
|
}
struct A {|}
struct B
{
|
}
After apply this patch, it's auto changed to:
class A {|};
class B
{
|
};
struct A {|};
struct B
{
|
};
A semicolon add here: };
[attachment deleted by admin]
Update: support 'enum' keyword
Update2: support 'union' keyword :P
Index: src/sdk/cbeditor.cpp
===================================================================
--- src/sdk/cbeditor.cpp (revision 6196)
+++ src/sdk/cbeditor.cpp (working copy)
@@ -414,6 +414,21 @@
control->GotoPos(pos);
if (ch == _T('{'))
{
+ int curLine = control->GetCurrentLine();
+ int keyLine = curLine;
+ wxString text;
+ do
+ {
+ int keyPos = control->GetLineIndentPosition(keyLine);
+ int start = control->WordStartPosition(keyPos, true);
+ int end = control->WordEndPosition(keyPos, true);
+ text = control->GetTextRange(start, end);
+ }
+ while (text.IsEmpty() && --keyLine);
+
+ if (text == _T("class") || text == _T("struct") || text == _T("enum") || text == _T("union"))
+ control->InsertText(control->GetLineEndPosition(curLine), _T(";"));
+
const wxRegEx reg(_T("^[ \t]*{}[ \t]*"));
if (reg.Matches(control->GetCurLine()))
{
What happens in my whole file looks like:
???
You don't check for the first line / character in the editor being reached, or am I wrong?!
If so, your code my result in an infinite loop, maybe even in a crash.
@morten:
Loaden use this for condition below:
while (text.IsEmpty() && --keyLine);
Look at the variable: keyLine, when it reaches zero, the loop will break, so, there will never be a infinite loop.
Please test this demo:
If not use "do/while", when type '{', it can not judge the class type. :(
??? Strange. I did not apply in my copy yet, but what if you use:
do
{
int keyPos = control->GetLineIndentPosition(keyLine);
int start = control->WordStartPosition(keyPos, true);
int end = control->WordEndPosition(keyPos, true);
text = control->GetTextRange(start, end)
text.Trim();
--keyLine;
}
while ( text.IsEmpty() && (keyLine>0) );
Notice: This is untested.
But noone will write this kind of code, search to the previous line is enough.
class A :
public B1,
public B2,
public B3,
public B4
{
|
};
Replace A, B1-4 with very long strings and for sure someone will write such code :)
namespace my
{
}; <--- here the semicolon is not needed!
I make a new patch, welcome test.
Index: src/sdk/cbeditor.cpp
===================================================================
--- src/sdk/cbeditor.cpp (revision 6195)
+++ src/sdk/cbeditor.cpp (working copy)
@@ -414,6 +414,23 @@
control->GotoPos(pos);
if (ch == _T('{'))
{
+ int curLine = control->GetCurrentLine();
+ int keyLine = curLine;
+ wxString text;
+ do
+ {
+ int keyPos = control->GetLineIndentPosition(keyLine);
+ int start = control->WordStartPosition(keyPos, true);
+ int end = control->WordEndPosition(keyPos, true);
+ text = control->GetTextRange(start, end);
+ }
+ while ((text.IsEmpty() || text == _T("public") || text == _T("protected") || text == _T("private"))
+ && text != _T("namespace")
+ && (--keyLine));
+
+ if (text == _T("class") || text == _T("struct") || text == _T("enum") || text == _T("union"))
+ control->InsertText(control->GetLineEndPosition(curLine), _T(";"));
+
const wxRegEx reg(_T("^[ \t]*{}[ \t]*"));
if (reg.Matches(control->GetCurLine()))
{
[attachment deleted by admin]