在Visual Studio Code中导航回光标最后位置的快捷键是什么?


当前回答

虽然公认的答案是正确的,但任何使用VS Code的Vim扩展的人都可能会因为向后导航需要你遍历你所做的每一次光标移动而感到沮丧。这将阻止“Go back”在以下用例中正常工作:

进入定义 在定义上戳一段时间(例如,移动光标) 回到第一步。

安装了Vim扩展后,每次光标移动都要做“返回”(对我来说,这已经足够让它几乎无用了!)。

幸运的是,Vim扩展很好地实现了跳转,所以在使用VS Code跳转到一个新位置(即“Go to definition”)后,你可以简单地按CTRL+O返回到之前的跳转位置。

其他回答

macOS:

⌘+ U:撤销上次游标操作

您也可以尝试按Ctrl + -。

顺便说一下,所有的快捷键都在macOS的键盘快捷键中。这真的很有用!

Vscode v1.65添加了一些新命令,用于导航到最后/下一个编辑位置或最后/下一个光标位置。

编辑位置意味着有一个实际的编辑,而游标位置意味着您访问了那个位置,但不一定在那里进行了编辑。

默认情况下,编辑器导航位置将被添加 在编辑器之间导航,但在编辑器内部导航时也是如此(对于 例如,当切换笔记本单元格或更改文本中的选择时 编辑器)。如果你觉得太多的位置被记录,新的 添加了减少位置的命令: 导航位置(例如当使用“转到定义”时) 编辑位置(每当编辑器被更改时,例如在文本编辑器中输入时)

从https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_65.md

光标位置:

Go Forward in Navigation Locations
"workbench.action.navigateForwardInNavigationLocations"

Go Back in Navigation Locations
"workbench.action.navigateBackInNavigationLocations"

Go to Last Navigation Location
      // acts like a toggle between current and last cursor location
"workbench.action.navigateToLastNavigationLocation"

Go Previous in Navigation Locations
"workbench.action.navigatePreviousInNavigationLocations"

编辑地点:

Go Forward in Edit Locations
"workbench.action.navigateForwardInEditLocations"

Go Back in Edit Locations
"workbench.action.navigateBackInEditLocations"

Go Previous in Edit Locations
"workbench.action.navigatePreviousInEditLocations"

Go to Last Edit Location
      // acts like a toggle between current and last edit location
"workbench.action.navigateToLastEditLocation"

Associated context keys have been added to make assigning keybindings more powerful: canNavigateBackInNavigationLocations: Whether it is possible to go back in navigation locations canNavigateForwardInNavigationLocations: Whether it is possible to go forward in navigation locations canNavigateToLastNavigationLocation: Whether it is possible to go to the last navigation location canNavigateBackInEditLocations: Whether it is possible to go back in edit locations canNavigateForwardInEditLocations: Whether it is possible to go forward in edit locations canNavigateToLastEditLocation: Whether it is possible to go to the last edit location

Mac OS (MacBook Pro):

后面:Ctrl(control) + -(连字符)

后退:Ctrl + Shift + -(连字符)

作为键盘快捷键的替代,有一个名为“后退和前进按钮”的扩展,它将前进和后退按钮添加到状态栏。

在vs code中有几种返回的方法和返回的选项。

要更改以下任何内容,请按ctrl + p进入命令面板,然后键入>后,输入您需要更改的配置:

然后你所需要做的就是点击设置图标(如图中2所示),并将键绑定更改为你想要的任何键。

你有不同的选择返回:

转到最后编辑位置 游标撤销(意思是:回到最后一个游标位置) 游标重做(与上面相反)