CreatBotMainsail/docs/quicktips/hide-gcode_macros-by-default.md
Paul Cutler be2efac9fd
docs: Update Quicktips (#518)
Reiview and update the whole Quicktip section with better readability, grammar and spelling.

Signed-off-by Paul Cutler paul@paulcutler.org
2022-01-18 14:14:53 +01:00

724 B

layout title parent has_children permalink description
default Hide macros, outputs or fans Quicktips false /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}