是否可以在VS Code的鼠标悬停提示中仅显示函数注释的简短部分?还是没有折叠空格的完整功能注释?
一个例子:
/**
* Counts the number of bits in a bitboard.
*
* b: a bitboard
*
* returns: the number of set bits of b
*/
extern int count_bits(bitboard b);
我只想看“计算位板上的位数”。在工具提示或完整注释中,带有换行符。但是现在看起来像这样:
是否可以更改VS Code的这种行为?