:orphan: .. title:: CONFIG_SHELL_CMDS_RESIZE .. kconfig:: CONFIG_SHELL_CMDS_RESIZE CONFIG_SHELL_CMDS_RESIZE ######################## *Enable resize command* Type: ``bool`` Help ==== .. code-block:: none By default shell assumes width of a terminal screen set to 80 characters. Each time terminal screen width is changed resize command must be called to ensure correct text display on the terminal screen. The resize command can be turned off to save code memory (~0,5k). Direct dependencies =================== \ :kconfig:`SHELL_CMDS ` && \ :kconfig:`SHELL_VT100_COMMANDS ` && \ :kconfig:`SHELL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if !\ :kconfig:`SHELL_MINIMAL ` Kconfig definition ================== At ``/shell/Kconfig:201`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:45`` Menu path: (Top) → Sub Systems and OS Services → Shell → Enable built-in commands .. code-block:: kconfig config SHELL_CMDS_RESIZE bool "Enable resize command" default y if !SHELL_MINIMAL depends on SHELL_CMDS && SHELL_VT100_COMMANDS && SHELL help By default shell assumes width of a terminal screen set to 80 characters. Each time terminal screen width is changed resize command must be called to ensure correct text display on the terminal screen. The resize command can be turned off to save code memory (~0,5k). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*