Hi,
I discovered a strange behavior of auto-complete.
I’m using the version 3.1.1 (Build 3176).
If I select something at the top of the file, then doing CTRL+D to multiple select another occurrence, if the second occurrence is in the next page (in sense of scrolling down the file) the auto-complete does not appear.
To replicate that, follow these steps:
- position the cursor an the top most of the file
- select “bbbbb”
- press
CTRL+D - digit “a”
then the auto-complete must appear suggesting “aaaaa”
Example of file with auto-complete working:
<?php $aaaaa; $bbbbb; $bbbbb; ?>
Example of file with auto-complete not working:
<?php $aaaaa; $bbbbb; // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // $bbbbb; ?>
The strange thing is that if I first select the “bbbbb” at the bottom of the file, the auto-complete appears.
How to fix that?
Thanks a lot!