<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> <!-- Use Help > Report Issue to prefill these. --> - VSCode Version: latest - OS Version: latest Steps to Reproduce: ```ts a( 1 ) ``` 1. Place your cursor on `a` (before/after the function name) 2. Run "expand selection" twice Expected: the whole call expression should be selected, including the arguments.  Actual: only `a(` is selected. This is not at all helpful. The user has to run "expand selection" again to get what they want.  Note this works in a variable declaration, so I don't see why we would want different behaviour outside of a variable? E.g. ```ts const x = a( 1 ) ```  <!-- Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Yes