We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fa5ddb commit bed0501Copy full SHA for bed0501
src/ptpython/completer.py
@@ -286,7 +286,9 @@ def get_completions(
286
suffix = "..."
287
288
style = _get_style_for_jedi_completion(jc)
289
- display_meta = jc.type if style == "" else [(style, jc.type)]
+ display_meta = (
290
+ jc.type if style == "" else [(f"{style}-meta", jc.type)]
291
+ )
292
293
yield Completion(
294
jc.name_with_symbols,
0 commit comments