Skip to content

Commit 8d0b1a2

Browse files
committed
Change defaults #167
1 parent 5635b27 commit 8d0b1a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bin/Notepad2e.exe

0 Bytes
Binary file not shown.

src/Extension/Utils.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ BOOL bUsePrefixInOpenDialog = TRUE;
4343
ESaveOnLoseFocus iSaveOnLoseFocus = SLF_DISABLED;
4444
BOOL bCtrlWheelScroll = TRUE;
4545
BOOL bMoveCaretOnRightClick = TRUE;
46-
EExpressionEvaluationMode iEvaluateMathExpression = EEM_DISABLED;
46+
EExpressionEvaluationMode iEvaluateMathExpression = EEM_LINE;
4747
EWordNavigationMode iWordNavigationMode = 0;
48-
ELanguageIndicatorMode iShowLanguageInTitle = LIT_HIDE;
48+
ELanguageIndicatorMode iShowLanguageInTitle = LIT_SHOW_NON_US;
4949
UINT iShellMenuType = CMF_EXPLORE;
5050
BOOL bHighlightLineIfWindowInactive = FALSE;
5151
long iMaxSearchDistance = DEFAULT_MAX_SEARCH_DISTANCE_KB * BYTES_IN_KB;

src/Notepad2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5538,7 +5538,7 @@ void LoadSettings()
55385538
bMarkLongLines = IniSectionGetInt(pIniSection, L"MarkLongLines", 0);
55395539
if (bMarkLongLines) bMarkLongLines = 1;
55405540

5541-
iLongLinesLimit = IniSectionGetInt(pIniSection, L"LongLinesLimit", 72);
5541+
iLongLinesLimit = IniSectionGetInt(pIniSection, L"LongLinesLimit", 80);
55425542
iLongLinesLimit = max(min(iLongLinesLimit, 4096), 0);
55435543
iLongLinesLimitG = iLongLinesLimit;
55445544

0 commit comments

Comments
 (0)