I've got the Xdebug plugin working with Sublime Text 3 (as well as the SFTP plugin), and I can successfully set breakpoints and have the Xdebug Context pane populate with every variable in my phpBB site; and I can expand arrays and examine their contents. But it escapes me as to how to find, among the hundreds of variables in the list, a particular variable of interest and its value. Nor can I find where it's documented as to how to find it. Are there any good resources for this? As I say, I have the basics working - this fundamental step eludes me and prevents me from debugging.

I tried issuing printf's in the console window, but no matter what I enter there, I get "SyntaxError: invalid syntax"
Edit: I've stumbled on the solution! Once you've hit a breakpoint and the Xdebug Context presents, give that tab focus and do a Ctrl + F - a "Find" dialog presents at the bottom of the Sublime window that permits you to search for a variable. The "" button permits you to constrain the search to exactly what's typed, because e.g., "alpha" is contained within "alphanumeric":
