diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-12-03 12:05:46 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-12-03 12:19:47 -0500 |
commit | d7053f6e718e0a51b48054b90e38a1b0a698ca52 (patch) | |
tree | feed961b91a80beff2a22a3063cbf63e19a1944a /docs/Config_Reference.md | |
parent | 91de1560a727264e6955f7581a5864bdb9c1653e (diff) | |
download | kutter-d7053f6e718e0a51b48054b90e38a1b0a698ca52.tar.gz kutter-d7053f6e718e0a51b48054b90e38a1b0a698ca52.tar.xz kutter-d7053f6e718e0a51b48054b90e38a1b0a698ca52.zip |
save_variables: Support saving variables to a disk file
Signed-off-by: Dushyant Ahuja dusht.ahuja@gmail.com
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Config_Reference.md')
-rw-r--r-- | docs/Config_Reference.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index 54156c68..5b0a8b54 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -1182,6 +1182,20 @@ gcode: # Default is 0. ``` +## [save_variables] + +Support saving variables to disk so that they are retained across +restarts. See +[command templates](Command_Templates.md#save-variables-to-disk) and +[G-Code reference](G-Codes.md#save-variables) for further information. + +``` +[save_variables] +filename: +# Required - provide a filename that would be used to save the +# variables to disk e.g. ~/variables.cfg +``` + ## [idle_timeout] Idle timeout. An idle timeout is automatically enabled - add an |