可以说我有这段文字
public function __construct() {
parent::__construct();
}
我想在同一级别的 parrent::construct 上方插入一个新行。像:
public function __construct() {
// this is the new line.
parent::__construct();
}
我怎样才能做到这一点。我尝试在命令模式下执行Ctrl+ Enter,但这也会将 { 向下移动。我设法通过将光标移到父级的开头并执行Ctrl+来做到这一点Enter。当光标位于第一行的末尾时,没有办法吗?还是快速跳到父母的捷径?