Welcome to the May 2022 update of PHP Tools for Visual Studio. The release v1.65 introduces IntelliSense improvements, enhanced generics support, and mostly the new Debug Inlines and other editor neat improvements.
We're always trying to provide more insights while debugging your code. There are many features like Immediate Window, Quick Watch, Pinning Objects (aka Object IDs), or an efficient large array support.
With the v1.65 we are adding one more - displaying debug inlines.
Debug Inlines are displayed in gray italic at the end of line. It shows values of variables and expressions depending on the current debugging context. Usually it is function parameters, loop variables, and expressions being read in the current statement.
To disable/enable Debug Inlines, go to Tools
/ Options
, Text Editor
/ PHP
/ Advanced
, and change the value of Debug Inlines
option.
One of the frequently requested feature is to highlight TODOs in your code. The release v1.65 provides highlighting of single line comments //TODO:
, #TODO
, or @todo
within documentary comments.
To disable/enable highlighting of TODOs, go to Tools
/ Options
, Text Editor
/ PHP
/ Advanced
, and change the value of Highlighting of TODO comments
option.
Release v1.65 improves and fixes issues reported by our users. The following is the list of most common feature requests and fixes: