Skip to content

Commit

Permalink
Let shouldAutotriggerSuggestImpl always return true, fixes #179
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Nov 24, 2015
1 parent ebbbee2 commit cb28735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/editor/common/modes/abstractMode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class AbstractMode<W extends AbstractModeWorker> implements Modes.IMode {
}

public shouldAutotriggerSuggestImpl(context:Modes.ILineContext, offset:number, triggeredByCharacter:string):boolean {
return false;
return true;
}

public shouldShowEmptySuggestionList():boolean {
Expand Down

0 comments on commit cb28735

Please sign in to comment.