mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
+ clean: constant naming typo
This commit is contained in:
parent
4e7329770b
commit
dc737806a4
@ -463,7 +463,7 @@
|
||||
#define IDM_VIEW_SHOWEOLS 40408
|
||||
#define IDM_VIEW_WORDWRAPSYMBOLS 40409
|
||||
#define IDM_VIEW_MATCHBRACES 40410
|
||||
#define IDM_VIEW_HILITECURRENTLINE 40411
|
||||
#define IDM_VIEW_HIGHLIGHTCURRENTLINE 40411
|
||||
#define IDM_VIEW_LINENUMBERS 40412
|
||||
#define IDM_VIEW_MARGIN 40413
|
||||
#define IDM_VIEW_ZOOMIN 40414
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -2892,7 +2892,7 @@ LRESULT MsgInitMenu(HWND hwnd, WPARAM wParam, LPARAM lParam)
|
||||
i = SciCall_GetLexer();
|
||||
//EnableCmd(hmenu,IDM_VIEW_AUTOCLOSETAGS,(i == SCLEX_HTML || i == SCLEX_XML));
|
||||
CheckCmd(hmenu, IDM_VIEW_AUTOCLOSETAGS, Settings.AutoCloseTags /*&& (i == SCLEX_HTML || i == SCLEX_XML)*/);
|
||||
CheckCmd(hmenu, IDM_VIEW_HILITECURRENTLINE, Settings.HighlightCurrentLine);
|
||||
CheckCmd(hmenu, IDM_VIEW_HIGHLIGHTCURRENTLINE, Settings.HighlightCurrentLine);
|
||||
CheckCmd(hmenu, IDM_VIEW_HYPERLINKHOTSPOTS, Settings.HyperlinkHotspot);
|
||||
CheckCmd(hmenu, IDM_VIEW_SCROLLPASTEOF, Settings.ScrollPastEOF);
|
||||
|
||||
@ -4753,7 +4753,7 @@ LRESULT MsgCommand(HWND hwnd, UINT umsg, WPARAM wParam, LPARAM lParam)
|
||||
Settings.AutoCloseTags = !Settings.AutoCloseTags;
|
||||
break;
|
||||
|
||||
case IDM_VIEW_HILITECURRENTLINE:
|
||||
case IDM_VIEW_HIGHLIGHTCURRENTLINE:
|
||||
Settings.HighlightCurrentLine = !Settings.HighlightCurrentLine;
|
||||
Style_SetCurrentLineBackground(Globals.hwndEdit, Settings.HighlightCurrentLine);
|
||||
break;
|
||||
|
||||
@ -130,7 +130,7 @@ BEGIN
|
||||
"I", IDM_EDIT_SPLITLINES, VIRTKEY, CONTROL, NOINVERT
|
||||
"I", IDM_FILE_OPENFAV, VIRTKEY, ALT, NOINVERT
|
||||
"I", IDM_EDIT_TITLECASE, VIRTKEY, CONTROL, ALT, NOINVERT
|
||||
"I", IDM_VIEW_HILITECURRENTLINE, VIRTKEY, SHIFT, CONTROL, NOINVERT
|
||||
"I", IDM_VIEW_HIGHLIGHTCURRENTLINE, VIRTKEY, SHIFT, CONTROL, NOINVERT
|
||||
"J", IDM_EDIT_JOINLINES, VIRTKEY, CONTROL, NOINVERT
|
||||
"J", IDM_EDIT_JOINLN_NOSP, VIRTKEY, CONTROL, ALT, NOINVERT
|
||||
"J", IDM_EDIT_JOINLINES_PARA, VIRTKEY, SHIFT, CONTROL, NOINVERT
|
||||
|
||||
Loading…
Reference in New Issue
Block a user