The list of classes when trying to use breakpoints is restricted to 10k and doesn’t list our classes that start with a V. How can we change this behaviour?
To resolve the visibility limit, you must adjust the internal IDE Registry settings to allow for a larger class index. Press Shift twice to open the Search Everywhere box, type “Registry,” and select the matching result from the list. Scroll down to find the key labeled debugger.max.classes.to.show and change the value from 10000 to a significantly higher number that covers your total class count. Once you save this change and restart the application, the breakpoint class list will no longer be capped at 10k entries. This ensures that all classes, including those starting with “V,” are fully indexed and searchable within your debugger settings. This simple configuration change allows the IDE to process your entire codebase without hitting the default display restriction.