[NEW_FEATURE] Indentguideline can be shown w/o whitespace or tab symbol.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@470 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2009-04-28 23:27:37 +00:00
parent 1a97505005
commit bd300294dd
2 changed files with 2 additions and 1 deletions

View File

@ -586,6 +586,7 @@ bool NppParameters::reloadStylers(TCHAR *stylePath)
{
getExternalLexerFromXmlTree( getExternalLexerDoc()->at(i) );
}
return true;
}
bool NppParameters::reloadLang()

View File

@ -296,7 +296,7 @@ public:
};
void showIndentGuideLine(bool willBeShowed = true) {
execute(SCI_SETINDENTATIONGUIDES, (WPARAM)willBeShowed);
execute(SCI_SETINDENTATIONGUIDES, (WPARAM)willBeShowed?(SC_IV_LOOKBOTH):(SC_IV_NONE));
};
bool isShownIndentGuide() const {