Skip to content

Fix typo in completion details #396

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Dec 11, 2017
Merged
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/client/providers/itemInfoSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class ItemInfoSource {
}

const descriptionWithHighlightedCode = this.highlightCode(dnd[1]);
const tooltip = new vscode.MarkdownString(['y```python', signature, '```', descriptionWithHighlightedCode].join(EOL));
const tooltip = new vscode.MarkdownString(['```python', signature, '```', descriptionWithHighlightedCode].join(EOL));
infos.push(new LanguageItemInfo(tooltip, dnd[0], new vscode.MarkdownString(dnd[1])));

const key = signature + lines.join('');
Expand Down
3 changes: 1 addition & 2 deletions src/test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ const options: MochaSetupOptions & { retries: number } = {
ui: 'tdd',
useColors: true,
timeout: 25000,
retries: 3,
grep: 'Autocomplete'
retries: 3
};
testRunner.configure(options);
module.exports = testRunner;