:orphan: .. title:: CONFIG_SHELL_TAB_AUTOCOMPLETION .. kconfig:: CONFIG_SHELL_TAB_AUTOCOMPLETION CONFIG_SHELL_TAB_AUTOCOMPLETION ############################### *Enable commands autocompletion with the Tab button* Type: ``bool`` Help ==== .. code-block:: none Enable commands and subcommands autocompletion with the Tab key. This function can be deactivated to save some flash. Direct dependencies =================== \ :kconfig:`SHELL_TAB ` && \ :kconfig:`SHELL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if !\ :kconfig:`SHELL_MINIMAL ` Kconfig definition ================== At ``/shell/Kconfig:99`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:45`` Menu path: (Top) → Sub Systems and OS Services → Shell → Enable the Tab button support in shell .. code-block:: kconfig config SHELL_TAB_AUTOCOMPLETION bool "Enable commands autocompletion with the Tab button" default y if !SHELL_MINIMAL depends on SHELL_TAB && SHELL help Enable commands and subcommands autocompletion with the Tab key. This function can be deactivated to save some flash. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*