Consider the following lines of PHP code:
\App\Logger::warn('test_warn');
\App\Logger::warn('test_warn');
\App\Logger::warn('test_warn');
When I place my cursor in the “warn” of the first ::warn( and press ctrl+d (find_under_expand), the word “warn” is selected. When I press ctrl+d again, what I would expect is the “warn” in the ‘test_warn’ to be selected. However, what happens is that the warn in the next ::warn( is selected. However however, when I use my mouse to select the first ::warn( and press ctrl+d, the “warn” in the ‘test_warn’ is selected. Is this supposed to work like this?