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 3be0402 commit 99f1686Copy full SHA for 99f1686
plugin/libclang.py
@@ -434,7 +434,10 @@ def roll_out_optional(chunks):
434
for optional_arg in roll_out_optional(chunk.string):
435
if place_markers_for_optional_args:
436
word += snippetsFormatPlaceHolder(optional_arg)
437
- info += optional_arg + "=?"
+ if -1 != optional_arg.find('='):
438
+ info += optional_arg
439
+ else:
440
+ info += optional_arg + "=?"
441
442
if chunk.isKindPlaceHolder():
443
word += snippetsFormatPlaceHolder(chunk_spelling)
0 commit comments