BC Friday Tips #72 Inlay Hints

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

thatnavguy

Experienced NZ-based NAV Developer and Consultant with 15+ years of experience leading multiple IT projects, performing business analyst, developing, implementing, and upgrading Dynamics NAV and Business Central. Passionate to deliver solution that focuses on user-friendly interface while keeping high standard of compliance with the needs.

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *