From 4830b770d54176df25760dd1c0b9dead20ac3f81 Mon Sep 17 00:00:00 2001 From: Scott Sumner <30118311+sasumner@users.noreply.github.com> Date: Sun, 18 Oct 2020 07:01:29 -0400 Subject: [PATCH] Increase untruncated Find-result window line length to 2048 There has been a complaint about long lines not being "well-represented" in the Find result window. See https://notepad-plus-plus.org/community/topic/18028/how-do-i-see-the-full-line-in-find-results-window. Fix #7723, close #9030 --- scintilla/include/Scintilla.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scintilla/include/Scintilla.h b/scintilla/include/Scintilla.h index f8f9035a..d00aa1b7 100644 --- a/scintilla/include/Scintilla.h +++ b/scintilla/include/Scintilla.h @@ -1055,7 +1055,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_MOD_INSERTCHECK 0x100000 #define SC_MOD_CHANGETABSTOPS 0x200000 #define SC_MODEVENTMASKALL 0x3FFFFF -#define SC_SEARCHRESULT_LINEBUFFERMAXLENGTH 1024 +#define SC_SEARCHRESULT_LINEBUFFERMAXLENGTH 2048 #define SC_UPDATE_CONTENT 0x1 #define SC_UPDATE_SELECTION 0x2 #define SC_UPDATE_V_SCROLL 0x4