Files
CreatBotMainsail/docs/features/hide-gcode_macros-by-default.md
lixxbox 4f9581f3a0 docs: split up quicktips (#584)
until now, all features were listed under quicktips. for a better overview and in preparation for further descriptions, the pages will be split into quicktips and features.
2022-01-29 11:05:04 +01:00

782 B

layout, title, parent, nav_order, has_children, permalink, redirect_from, description
layout title parent nav_order has_children permalink redirect_from description
default Hide macros, outputs or fans Features 50 false /features/hide-gcode_macros
/quicktips/hide-gcode_macros
You can show and hide G-Code macros in the interface settings

{{ page.title }}

{{ page.description }}

Did you know, that you can also hide gcode macros by prefixing the name with an underscore?

[gcode_macro MY_AWESOME_GCODE]
gcode:
	_MY_HELPER_CODE
[gcode_macro _MY_HELPER_CODE]
gcode:
	M300

MY_AWESOME_GCODE appears in your interface settings, _MY_HELPER_CODE does not.

This also works for other configuration sections including fans and outputs. {: .info}