When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.
bool cbStyledTextCtrl::AllowTabSmartJump(){ const int pos = GetCurrentPos(); if (pos == wxSCI_INVALID_POSITION) return false; const int style = GetStyleAt(pos); if (IsString(style) || IsCharacter(style) || IsComment(style) || IsPreprocessor(style)) return !m_tabSmartJump; return true;}
void cbStyledTextCtrl::OnKeyDown(wxKeyEvent& event){ switch (event.GetKeyCode()) { case WXK_TAB: { if (AutoCompActive()) break;