Version 2.11.0-262.0.dev

Merge commit '1a97f851ef44772ab0d0d850fa71d9b8ebabeb28' into 'dev'
diff --git a/pkg/analysis_server/lib/src/lsp/constants.dart b/pkg/analysis_server/lib/src/lsp/constants.dart
index 460fa5e..275030d 100644
--- a/pkg/analysis_server/lib/src/lsp/constants.dart
+++ b/pkg/analysis_server/lib/src/lsp/constants.dart
@@ -16,7 +16,11 @@
 ///
 ///     myLongFunctionName();
 ///     print(myLong^)
-const dartCompletionCommitCharacters = ['.', '('];
+///
+/// The `.` is not included because it falsely triggers whenver typing a
+/// cascade (`..`), inserting the very first completion instead of just a second
+/// period.
+const dartCompletionCommitCharacters = ['('];
 
 /// Set the characters that will cause the editor to automatically
 /// trigger completion.
diff --git a/tools/VERSION b/tools/VERSION
index 94efa75..d434e56 100644
--- a/tools/VERSION
+++ b/tools/VERSION
@@ -27,5 +27,5 @@
 MAJOR 2
 MINOR 11
 PATCH 0
-PRERELEASE 261
+PRERELEASE 262
 PRERELEASE_PATCH 0
\ No newline at end of file