我在 C 中有一段这样的代码-
enum colors { //---->I am here
RED,
BLUE,
/* Hundreds of colors in between */
}; // -----> I want to reach here in the easiest possible way.
从块的末尾回到块的开头也很有用。
我在 C 中有一段这样的代码-
enum colors { //---->I am here
RED,
BLUE,
/* Hundreds of colors in between */
}; // -----> I want to reach here in the easiest possible way.
从块的末尾回到块的开头也很有用。
通常,%
密钥会执行此操作(在正常模式下)。它是双向的。您可能还需要查看相关文档。
您可以使用“Shift + 5”键在代码块的开头/结尾之间跳转。