eclips中的垂直代码块分隔符

2024-04-24 08:05:40 发布

您现在位置:Python中文网/ 问答频道 /正文

是否可以在eclipse中启用垂直条来划分代码块?在


Tags: 代码eclipse
1条回答
网友
1楼 · 发布于 2024-04-24 08:05:40

如果您引用的是关于“在控制流语句中绘制垂直线”的bug 84878,那么不,这还不可能。在

In order to help reading complex algorithm, one could imagine having some graphical connections in between constructs (remember when we learned algorithmic at school).

if (...) {
|  if (...) {
|  |
|  }
} else {
|
|
}

I would imagine a thin line directly in the code, anchored on left side of control flow keyword, and t would only look nice if correctly indented

相关问题 更多 >