We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37419e6 commit bf0fa01Copy full SHA for bf0fa01
src/ui/system.cpp
@@ -95,14 +95,15 @@ void System::editSource(strlib::String &loadPath) {
95
fileName = loadPath;
96
}
97
98
+ const char *help = " Ctrl+h (C-h)=Help";
99
strlib::String dirtyFile;
100
dirtyFile.append(" * ");
101
dirtyFile.append(fileName);
- dirtyFile.append(" C-h=Help");
102
+ dirtyFile.append(help);
103
strlib::String cleanFile;
104
cleanFile.append(" - ");
105
cleanFile.append(fileName);
- cleanFile.append(" C-h=Help");
106
+ cleanFile.append(help);
107
108
int w = _output->getWidth();
109
int h = _output->getHeight();
0 commit comments