import {type JSX} from "preact"; import {Setting, type SettingProps} from "./index.js"; export function AutocompleteSetting(props: SettingProps): JSX.Element { return (

Adds autocompletion in textareas for user mentions (starting with{" "} @) and groups (starting with ~).
When an autocompletion list is shown you can press Tab to move down the list and Shift+Tab to move up the list. To fill in your highlighted match press Enter.

); }