{"id":13399478,"url":"https://github.com/rizonesoft/Notepad3","last_synced_at":"2025-03-14T04:31:31.127Z","repository":{"id":37423657,"uuid":"46102589","full_name":"rizonesoft/Notepad3","owner":"rizonesoft","description":"Notepad like text editor based on the Scintilla source code. Notepad3 based on code from Notepad2 and MiniPath on code from metapath. Download Notepad3:","archived":false,"fork":false,"pushed_at":"2024-10-14T14:48:11.000Z","size":206396,"stargazers_count":5084,"open_issues_count":113,"forks_count":335,"subscribers_count":68,"default_branch":"master","last_synced_at":"2024-10-29T15:34:58.221Z","etag":null,"topics":["syntax-highlighting"],"latest_commit_sha":null,"homepage":"https://www.rizonesoft.com/downloads/notepad3/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rizonesoft.png","metadata":{"files":{"readme":"Readme-Notepad2.txt","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"License.txt","code_of_conduct":"Code_of_Conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"rizonesoft"}},"created_at":"2015-11-13T05:45:50.000Z","updated_at":"2024-10-29T13:24:29.000Z","dependencies_parsed_at":"2023-10-17T02:04:56.929Z","dependency_job_id":"2b68258d-ef3a-4545-bc77-4f5d954c4827","html_url":"https://github.com/rizonesoft/Notepad3","commit_stats":null,"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizonesoft%2FNotepad3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizonesoft%2FNotepad3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizonesoft%2FNotepad3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rizonesoft%2FNotepad3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rizonesoft","download_url":"https://codeload.github.com/rizonesoft/Notepad3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243159179,"owners_count":20245674,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["syntax-highlighting"],"created_at":"2024-07-30T19:00:38.291Z","updated_at":"2025-03-14T04:31:31.119Z","avatar_url":"https://github.com/rizonesoft.png","language":"C++","readme":"================================================================================\r\n=                                                                              =\r\n=            Notepad2 - light-weight Scintilla-based text editor for Windows   =\r\n=                                                                              =\r\n=                                                            Notepad2 4.2.25   =\r\n=                                               (c) Florian Balmer 2004-2011   =\r\n=                                               https://www.flos-freeware.ch   =\r\n=                                                                              =\r\n================================================================================\r\n\r\n--------------------------------------------------\r\nThe Notepad2 Source Code\r\n--------------------------------------------------\r\n  This package contains the full source code of Notepad2 4.2.25 for\r\n  Windows. Project files for Visual C++ 7.0 are included. Chances are\r\n  that Notepad2 can be rebuilt with other development tools, including\r\n  the free Visual C++ Express Edition, but I haven't tested this.\r\n\r\n--------------------------------------------------\r\nRebuilding from the Source Code\r\n--------------------------------------------------\r\n  Notepad2 4.2.25 is based on Scintilla 2.24 [1].\r\n\r\n  [1] https://www.scintilla.org\r\n\r\n  To be able to rebuild Notepad2, the source code of the Scintilla\r\n  editing component has to be unzipped to the \"scintilla\" subdirectory\r\n  of the Notepad2 source code directory.\r\n\r\n  Many of the Scintilla lexing modules are not used by Notepad2. Run\r\n  LinkLex.js to adapt the list (in \"scintilla/src/Catalogue.cxx\") and\r\n  make linking work properly.\r\n\r\n--------------------------------------------------\r\nCreating a Compact Executable Program File\r\n--------------------------------------------------\r\n  Linking to the system CRT slightly improves disk footprint, memory\r\n  usage and startup because the pages for the system CRT are already\r\n  loaded and shared in memory. To achieve this, the release version of\r\n  Notepad2.exe is built using the Windows Driver Kit (WDK) 7.1.0 tools,\r\n  available as a free download from Microsoft. The appropriate build\r\n  scripts can be found in the \"wdkbuild\" subdirectory. Set %WDKBASEDIR%\r\n  to the directory of the WDK tools on your system.\r\n\r\n--------------------------------------------------\r\nHow to add or modify Syntax Schemes\r\n--------------------------------------------------\r\n  The Scintilla documentation has an overview of syntax highlighting,\r\n  and how to write your own lexing module, in case the language you\r\n  would like to add is not currently supported by Scintilla.\r\n\r\n  Add your own lexer data structs to the global pLexArray (Styles.c),\r\n  then adjust NUMLEXERS (Styles.h) to the new total number of syntax\r\n  schemes. Include the \"scintilla/lexers/Lex*.cxx\" file required for\r\n  your language into your project. Ensure the new module is initialized\r\n  (in \"scintilla/src/Catalogue.cxx\"), either by manually uncommenting\r\n  the corresponding LINK_LEXER() macro call, or by updating and\r\n  re-running LinkLex.js.\r\n\r\n--------------------------------------------------\r\nCopyright\r\n--------------------------------------------------\r\n  See License.txt for details about distribution and modification.\r\n\r\n  If you have any comments or questions, please drop me a note:\r\n  florian.balmer@gmail.com\r\n\r\n  (c) Florian Balmer 2004-2011\r\n  https://www.flos-freeware.ch\r\n\r\n###\r\n","funding_links":["https://github.com/sponsors/rizonesoft"],"categories":["C++","C","剪贴板工具"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frizonesoft%2FNotepad3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frizonesoft%2FNotepad3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frizonesoft%2FNotepad3/lists"}