Beep, used for completion when there is nothing to complete or when all * the choices were already shown. */
| 1030 | /* Beep, used for completion when there is nothing to complete or when all |
| 1031 | * the choices were already shown. */ |
| 1032 | static void linenoiseBeep(void) { |
| 1033 | fprintf(stderr, "\x7"); |
| 1034 | fflush(stderr); |
| 1035 | } |
| 1036 | |
| 1037 | void linenoiseSetHighlightCallback(linenoiseHighlightCallback* fn) { |
| 1038 | highlightCallback = fn; |