Skip to content

Commit 14fbf72

Browse files
committed
UI: added f2 command for online help
1 parent 4aefbc6 commit 14fbf72

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

ChangeLog

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
2015-11-01
22
Fix debugger launch in linux build
3-
Fix editor variable handling
4-
Fix image drawing
3+
Fix editor display issue with keyword completion
4+
Fix editor case insensitive search
5+
Fix image drawing for large images
56
Fix PAINT infinite loop
67
Fix keyboard handling for non-us keymaps
78
Fix Ctrl+Home editor keystroke handler
89
Fix crash with online command if site is down
10+
Implemented editor F2 command to display online help
911

1012
2015-10-20
1113
Fix LET when assigning a value to a MAP/ARRAY field

src/platform/sdl/editor.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ void onlineHelp(const char *nodeId) {
1818
char path[100];
1919
sprintf(path, "http://smallbasic.sf.net/?q=node/%s", nodeId);
2020
browseFile(path);
21-
} else {
22-
browseFile("http://smallbasic.sourceforge.net/");
2321
}
2422
}
2523

src/ui/textedit.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ const char *helpText =
106106
"SHIFT-<arrow> select\n"
107107
"TAB indent line\n"
108108
"F1,A-h keyword help\n"
109+
"F2, online help\n"
109110
"F5 debug\n"
110111
"F9, C-r run\n";
111112

0 commit comments

Comments
 (0)