Some checks failed
Release / Bump Homebrew formula (push) Has been cancelled
Release / Build Linux amd64 (push) Has been cancelled
Release / Build Linux arm64 (push) Has been cancelled
Release / Build macOS arm64 (.app) (push) Has been cancelled
Release / Create GitHub Release (push) Has been cancelled
- Expanded help text and command documentation with detailed keybinding descriptions. - Added theme customization support to GUIConfig (Nord default, light/dark variants). - Adjusted for consistent indentation and debug instrumentation in undo system. - Enhanced test cases for multi-line, UTF-8, and branching scenarios.
18 lines
401 B
C++
18 lines
401 B
C++
/*
|
|
* HelpText.h - embedded/customizable help content
|
|
*/
|
|
#ifndef KTE_HELPTEXT_H
|
|
#define KTE_HELPTEXT_H
|
|
|
|
#include <string>
|
|
|
|
class HelpText {
|
|
public:
|
|
// Returns the embedded help text as a single string with newlines.
|
|
// Project maintainers can customize the returned string below
|
|
// (in HelpText.cc) without touching the help command logic.
|
|
static std::string Text();
|
|
};
|
|
|
|
#endif // KTE_HELPTEXT_H
|