 I saw the `// ^^^` syntax in the documentation, but if I want to highlight `function` in the example above, what should I do? ```ts function add(a: number, b: number) { // ^^^^ only highlights `ction` return a + b } ```