Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions _specifications/specification-3-16.md
Original file line number Diff line number Diff line change
Expand Up @@ -4382,14 +4382,15 @@ _Server Capability_:
*/
export interface CompletionOptions extends WorkDoneProgressOptions {
/**
* Most tools trigger completion request automatically without explicitly
* requesting it using a keyboard shortcut (e.g. Ctrl+Space). Typically they
* do so when the user starts to type an identifier. For example if the user
* types `c` in a JavaScript file code complete will automatically pop up
* present `console` besides others as a completion item. Characters that
* make up identifiers don't need to be listed here.
*
* If code complete should automatically be trigger on characters not being
* Most tools trigger a completion request automatically without an explicit
* keyboard shortcut (e.g. Ctrl+Space). Typically they do so when the user
* starts to type an identifier. For example if the user types `c` in a
* JavaScript file, code completion will automatically show `console` as a
* completion item.
*
* Characters that make up identifiers don't need to be listed here.
*
* If code completion should automatically trigger on characters not
* valid inside an identifier (for example `.` in JavaScript) list them in
* `triggerCharacters`.
*/
Expand Down