File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 112015-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
10122015-10-20
1113 Fix LET when assigning a value to a MAP/ARRAY field
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments