May 15, 2026
2 min read

BC Friday Tips #72 Inlay Hints

#BCFridayTips is here for #msdyn365bc developers! đź’ˇDid you know VS Code can show inline parameter names and return types while you code in AL?
Share:

Inlay Hints

#BCFridayTips is here for #msdyn365bc developers!

đź’ˇDid you know VS Code can show inline parameter names and return types while you code in AL?

Inlay Hints display extra context directly in the editor.

You do not need to:
• Hover over methods
• Jump to definitions
• Memorise parameter order

This is especially useful for procedures with many parameters.

Enable these settings in VS Code:
“editor.inlayHints.enabled”: “offUnlessPressed”,
“al.inlayhints.parameterNames.enabled”: true,
“al.inlayhints.functionReturnTypes.enabled”: true

Why use it?
âś… Understand parameters faster
âś… Reduce mistakes when calling procedures
âś… Stay focused without opening definitions

I personally use offUnlessPressed.
It keeps the editor clean and lets me quickly reveal hints only when needed.

Share to help others ♻️ and follow for more tips! 🚀

Inlay Hints setting

Related Posts