├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── CI_build.yml │ └── codeql-analysis.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── VersionHistory.md ├── copyARM64.cmd ├── copyWin32.cmd ├── copyx64.cmd ├── docs ├── CommandLineOptions.md ├── DarkModeUI.md ├── FAQs.md └── PreferencesDialog.md ├── images ├── CalltipANSI.png ├── CalltipInvalidUTF-8.png ├── CalltipValidUTF-8.png ├── PanelBytePos.png ├── PanelBytePos_dm.png ├── PanelCharPos.png ├── Preferences.png ├── Preferences_dm.png └── show_panel_toolbutton.png ├── src ├── CommandLineOptions.cpp ├── CommandLineOptions.h ├── Darkmode │ ├── DarkMode.cpp │ ├── DarkMode.h │ ├── IatHook.h │ ├── NPP_Plugin_Darkmode.cpp │ ├── NPP_Plugin_Darkmode.h │ ├── NppDarkMode.cpp │ └── NppDarkMode.h ├── Dialogs │ ├── AboutDialog.cpp │ ├── AboutDialog.h │ ├── GoToLineColPanel.cpp │ ├── GoToLineColPanel.h │ ├── PreferencesDialog.cpp │ └── PreferencesDialog.h ├── GotoLineColMain.cpp ├── NPP │ ├── Docking.h │ ├── DockingDlgInterface.h │ ├── Notepad_plus_msgs.h │ ├── PluginInterface.h │ ├── Sci_Position.h │ ├── Scintilla.h │ ├── StaticDialog.cpp │ ├── StaticDialog.h │ ├── Window.h │ ├── dockingResource.h │ ├── dpiManagerV2.cpp │ ├── dpiManagerV2.h │ └── menuCmdID.h ├── NameBlocks.cpp ├── NameBlocks.h ├── PluginDefinition.cpp ├── PluginDefinition.h ├── PreferencesIO.cpp ├── PreferencesIO.h ├── Resources │ ├── AboutUI.rc │ ├── GoToLineColUI.rc │ ├── GotoLineColPlugin.rc │ ├── about.bmp │ ├── control_ids.h │ ├── dock_dark.ico │ ├── dock_lite.ico │ ├── goto.bmp │ ├── goto.ico │ ├── goto_dark.ico │ ├── goto_fluent.ico │ ├── localization.h │ └── resource.h ├── UnicodeData │ ├── Blocks.txt │ ├── UnicodeBlocks.csv │ ├── UnicodeData.ini │ ├── UnicodeData.txt │ └── UnicodeNames.py ├── Utils.cpp └── Utils.h └── vs.proj ├── GotoLineCol.sln ├── GotoLineCol.vcxproj └── GotoLineCol.vcxproj.filters /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/.github/workflows/CI_build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VersionHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/VersionHistory.md -------------------------------------------------------------------------------- /copyARM64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/copyARM64.cmd -------------------------------------------------------------------------------- /copyWin32.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/copyWin32.cmd -------------------------------------------------------------------------------- /copyx64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/copyx64.cmd -------------------------------------------------------------------------------- /docs/CommandLineOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/docs/CommandLineOptions.md -------------------------------------------------------------------------------- /docs/DarkModeUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/docs/DarkModeUI.md -------------------------------------------------------------------------------- /docs/FAQs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/docs/FAQs.md -------------------------------------------------------------------------------- /docs/PreferencesDialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/docs/PreferencesDialog.md -------------------------------------------------------------------------------- /images/CalltipANSI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/CalltipANSI.png -------------------------------------------------------------------------------- /images/CalltipInvalidUTF-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/CalltipInvalidUTF-8.png -------------------------------------------------------------------------------- /images/CalltipValidUTF-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/CalltipValidUTF-8.png -------------------------------------------------------------------------------- /images/PanelBytePos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/PanelBytePos.png -------------------------------------------------------------------------------- /images/PanelBytePos_dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/PanelBytePos_dm.png -------------------------------------------------------------------------------- /images/PanelCharPos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/PanelCharPos.png -------------------------------------------------------------------------------- /images/Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/Preferences.png -------------------------------------------------------------------------------- /images/Preferences_dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/Preferences_dm.png -------------------------------------------------------------------------------- /images/show_panel_toolbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/images/show_panel_toolbutton.png -------------------------------------------------------------------------------- /src/CommandLineOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/CommandLineOptions.cpp -------------------------------------------------------------------------------- /src/CommandLineOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/CommandLineOptions.h -------------------------------------------------------------------------------- /src/Darkmode/DarkMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Darkmode/DarkMode.cpp -------------------------------------------------------------------------------- /src/Darkmode/DarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Darkmode/DarkMode.h -------------------------------------------------------------------------------- /src/Darkmode/IatHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Darkmode/IatHook.h -------------------------------------------------------------------------------- /src/Darkmode/NPP_Plugin_Darkmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Darkmode/NPP_Plugin_Darkmode.cpp -------------------------------------------------------------------------------- /src/Darkmode/NPP_Plugin_Darkmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Darkmode/NPP_Plugin_Darkmode.h -------------------------------------------------------------------------------- /src/Darkmode/NppDarkMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Darkmode/NppDarkMode.cpp -------------------------------------------------------------------------------- /src/Darkmode/NppDarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Darkmode/NppDarkMode.h -------------------------------------------------------------------------------- /src/Dialogs/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Dialogs/AboutDialog.cpp -------------------------------------------------------------------------------- /src/Dialogs/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Dialogs/AboutDialog.h -------------------------------------------------------------------------------- /src/Dialogs/GoToLineColPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Dialogs/GoToLineColPanel.cpp -------------------------------------------------------------------------------- /src/Dialogs/GoToLineColPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Dialogs/GoToLineColPanel.h -------------------------------------------------------------------------------- /src/Dialogs/PreferencesDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Dialogs/PreferencesDialog.cpp -------------------------------------------------------------------------------- /src/Dialogs/PreferencesDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Dialogs/PreferencesDialog.h -------------------------------------------------------------------------------- /src/GotoLineColMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/GotoLineColMain.cpp -------------------------------------------------------------------------------- /src/NPP/Docking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/Docking.h -------------------------------------------------------------------------------- /src/NPP/DockingDlgInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/DockingDlgInterface.h -------------------------------------------------------------------------------- /src/NPP/Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /src/NPP/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/PluginInterface.h -------------------------------------------------------------------------------- /src/NPP/Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/Sci_Position.h -------------------------------------------------------------------------------- /src/NPP/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/Scintilla.h -------------------------------------------------------------------------------- /src/NPP/StaticDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/StaticDialog.cpp -------------------------------------------------------------------------------- /src/NPP/StaticDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/StaticDialog.h -------------------------------------------------------------------------------- /src/NPP/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/Window.h -------------------------------------------------------------------------------- /src/NPP/dockingResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/dockingResource.h -------------------------------------------------------------------------------- /src/NPP/dpiManagerV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/dpiManagerV2.cpp -------------------------------------------------------------------------------- /src/NPP/dpiManagerV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/dpiManagerV2.h -------------------------------------------------------------------------------- /src/NPP/menuCmdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NPP/menuCmdID.h -------------------------------------------------------------------------------- /src/NameBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NameBlocks.cpp -------------------------------------------------------------------------------- /src/NameBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/NameBlocks.h -------------------------------------------------------------------------------- /src/PluginDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/PluginDefinition.cpp -------------------------------------------------------------------------------- /src/PluginDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/PluginDefinition.h -------------------------------------------------------------------------------- /src/PreferencesIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/PreferencesIO.cpp -------------------------------------------------------------------------------- /src/PreferencesIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/PreferencesIO.h -------------------------------------------------------------------------------- /src/Resources/AboutUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/AboutUI.rc -------------------------------------------------------------------------------- /src/Resources/GoToLineColUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/GoToLineColUI.rc -------------------------------------------------------------------------------- /src/Resources/GotoLineColPlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/GotoLineColPlugin.rc -------------------------------------------------------------------------------- /src/Resources/about.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/about.bmp -------------------------------------------------------------------------------- /src/Resources/control_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/control_ids.h -------------------------------------------------------------------------------- /src/Resources/dock_dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/dock_dark.ico -------------------------------------------------------------------------------- /src/Resources/dock_lite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/dock_lite.ico -------------------------------------------------------------------------------- /src/Resources/goto.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/goto.bmp -------------------------------------------------------------------------------- /src/Resources/goto.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/goto.ico -------------------------------------------------------------------------------- /src/Resources/goto_dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/goto_dark.ico -------------------------------------------------------------------------------- /src/Resources/goto_fluent.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/goto_fluent.ico -------------------------------------------------------------------------------- /src/Resources/localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/localization.h -------------------------------------------------------------------------------- /src/Resources/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Resources/resource.h -------------------------------------------------------------------------------- /src/UnicodeData/Blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/UnicodeData/Blocks.txt -------------------------------------------------------------------------------- /src/UnicodeData/UnicodeBlocks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/UnicodeData/UnicodeBlocks.csv -------------------------------------------------------------------------------- /src/UnicodeData/UnicodeData.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/UnicodeData/UnicodeData.ini -------------------------------------------------------------------------------- /src/UnicodeData/UnicodeData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/UnicodeData/UnicodeData.txt -------------------------------------------------------------------------------- /src/UnicodeData/UnicodeNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/UnicodeData/UnicodeNames.py -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/src/Utils.h -------------------------------------------------------------------------------- /vs.proj/GotoLineCol.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/vs.proj/GotoLineCol.sln -------------------------------------------------------------------------------- /vs.proj/GotoLineCol.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/vs.proj/GotoLineCol.vcxproj -------------------------------------------------------------------------------- /vs.proj/GotoLineCol.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shriprem/Goto-Line-Col-NPP-Plugin/HEAD/vs.proj/GotoLineCol.vcxproj.filters --------------------------------------------------------------------------------