Visible tabs demo #include "syscalls.h" /* getchar: simple buffered version */ int getchar(void) { static char buf[BUFSIZ]; static char *bufp = buf; static int n = 0; if (n == 0) { /* buffer is empty */ n = read(0, buf, sizeof buf); bufp = buf; } return (--n >= 0) ? (unsigned char) *bufp++ : EOF; } x 1#include "syscalls.h"2/* getchar: simple buffered version */3int getchar(void)4{5 static char buf[BUFSIZ];6 static char *bufp = buf;7 static int n = 0;8 if (n == 0) { /* buffer is empty */9 n = read(0, buf, sizeof buf);10 bufp = buf;11 }12 return (--n >= 0) ? (unsigned char) *bufp++ : EOF;13}14 Tabs inside the editor are spans with the class cm-tab, and can be styled.