From 763412586fd2501af1de4f6bbbb3a97292fb061d Mon Sep 17 00:00:00 2001 From: Quentin Stafford-Fraser Date: Mon, 25 Mar 2019 19:40:17 +0000 Subject: [PATCH] Mention proposed ordering for !include_dir_list (#8899) --- source/_docs/configuration/splitting_configuration.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/configuration/splitting_configuration.markdown b/source/_docs/configuration/splitting_configuration.markdown index 2fe7bb652a2..1cf7c1f523b 100644 --- a/source/_docs/configuration/splitting_configuration.markdown +++ b/source/_docs/configuration/splitting_configuration.markdown @@ -166,7 +166,7 @@ You can get help from the command line using: `hass --script check_config --help ### {% linkable_title Advanced Usage %} We offer four advanced options to include whole directories at once. Please note that your files must have the `.yaml` file extension; `.yml` is not supported. -- `!include_dir_list` will return the content of a directory as a list with each file content being an entry in the list. +- `!include_dir_list` will return the content of a directory as a list with each file content being an entry in the list. The list entries are ordered based on the alphanumeric ordering of the names of the files. - `!include_dir_named` will return the content of a directory as a dictionary which maps filename => content of file. - `!include_dir_merge_list` will return the content of a directory as a list by merging all files (which should contain a list) into 1 big list. - `!include_dir_merge_named` will return the content of a directory as a dictionary by loading each file and merging it into 1 big dictionary.