如何回到Goland先前打开的文件?

时间:2019-07-11 03:48:52

标签: goland

单击在JetBrains Goland中指向另一个文件的功能后,如何返回上一个打开的文件?

组合 * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package icecreamcones; /** * * */ public class icecreamCones { /** * @param args the command line arguments */ public static void main(String[] args) { int totalCones = 0; int totalStrawberry = 0; String readFile; try { TextIO.readFile("icecream.txt"); } catch (IllegalArgumentException e) { System.out.println("File not found!"); } while(!TextIO.eof()){ readFile = TextIO.getln(); totalCones++; if (readFile.equals("Strawberry")){ totalStrawberry++; } } System.out.println("The total number of sold cones is: " + totalCones); System.out.println("The total number of sold Strawberry flavoured cones is: " + totalStrawberry); } } ---------- I need to be able to print out the two statements so I need help figuring out how to make TextIO.readFile work. 对我不起作用。

2 个答案:

答案 0 :(得分:2)

有几种方法可以实现此目的,具体取决于您的需求:

  • 通过使用SwitcherCtrl + Tab(在所有平台上),您可以使用Ctrl + Shift + Tab功能在文件之间快速导航
  • 您可以使用Recent Files功能,该功能通过Windows / Linux上的Ctrl + E和macOS上的⌘ + E起作用
  • 您可以通过Windows / Linux上的Recent Locations和macOS上的Ctrl + Shift + E使用⌘ + Shift + E功能
  • 您可以使用浏览器之类的快捷方式来回移动。作为支持,它们是:Windows / Linux上的Ctrl + Alt + Left Arrow和macOS上的⌘ + [⌘ + Alt + Left Arrow。向前转发的是:Windows / Linux上的Ctrl + Alt + Right Arrow和macOS上的⌘ + ]⌘ + Alt + Right Arrow

如果Ctrl + Alt + Left/Right Arrow对您不起作用,则可以转到Settings/Preferences | Keymap并搜索Back操作(在导航下)。这应该向您显示其绑定。您也可以尝试使用快捷方式,使用搜索框旁边的放大镜并按该快捷方式找到与操作相关联的操作。确保您的操作系统/其他应用程序不会干扰您的键盘快捷键。

如果您对此仍有疑问,最好在https://youtrack.jetbrains.com/issues/Go的官方跟踪器上打开支持记录,并通过Help | Compress Logs and Show in...附加IDE日志。

答案 1 :(得分:0)

如果您阅读@dlsniper答案,但仍无法使用: enter image description here

您可以尝试: ctrl + windows (home) + alt + left arrow返回,尽管有设置。