Fix maintain indent not working in javascript regression
This commit is contained in:
parent
459d59f8ba
commit
14edff6892
@ -2365,7 +2365,7 @@ void Notepad_plus::maintainIndentation(TCHAR ch)
|
|||||||
LangType type = _pEditView->getCurrentBuffer()->getLangType();
|
LangType type = _pEditView->getCurrentBuffer()->getLangType();
|
||||||
|
|
||||||
if (type == L_C || type == L_CPP || type == L_JAVA || type == L_CS || type == L_OBJC ||
|
if (type == L_C || type == L_CPP || type == L_JAVA || type == L_CS || type == L_OBJC ||
|
||||||
type == L_PHP || type == L_JS || type == L_JSP || type == L_CSS)
|
type == L_PHP || type == L_JS || type == L_JAVASCRIPT || type == L_JSP || type == L_CSS)
|
||||||
{
|
{
|
||||||
if (((eolMode == SC_EOL_CRLF || eolMode == SC_EOL_LF) && ch == '\n') ||
|
if (((eolMode == SC_EOL_CRLF || eolMode == SC_EOL_LF) && ch == '\n') ||
|
||||||
(eolMode == SC_EOL_CR && ch == '\r'))
|
(eolMode == SC_EOL_CR && ch == '\r'))
|
||||||
|
Loading…
Reference in New Issue
Block a user