:orphan: .. title:: SHELL_TAB_AUTOCOMPLETION .. option:: CONFIG_SHELL_TAB_AUTOCOMPLETION *Enable commands autocompletion with the Tab button* Type: ``bool`` Help ==== Enable commands and subcommands autocompletion with the Tab key. This function can be deactivated to save some flash. Direct dependencies =================== \ :option:`SHELL_TAB ` && \ :option:`SHELL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``subsys/shell/Kconfig:76`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:41`` Menu path: (Top) → Sub Systems and OS Services → Shell → Enable the Tab button supporort in shell .. parsed-literal:: config SHELL_TAB_AUTOCOMPLETION bool "Enable commands autocompletion with the Tab button" default y depends on \ :option:`SHELL_TAB ` && \ :option:`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.)*