将 Console2 指向 Cygwin 时没有选项卡

将 Console2 指向 Cygwin 时没有选项卡

我正在尝试让 Console2 与我的 Cygwin 安装配合使用。我已将 Console2 中的 shell 配置为指向C:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico -,但当我打开“新选项卡”时,它只会打开 Console2 之外的全新 Cygwin 窗口。我做错了什么?

答案1

我究竟做错了什么?

C:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico -

mintty.exe是一个有自己窗口的终端。

它不是设计用于在属于另一个程序的窗口内运行。

$ mintty --help
Usage: mintty [OPTION]... [ PROGRAM [ARG]... | - ]

Start a new terminal session running the specified program or the user's shell.
If a dash is given instead of a program, invoke the shell as a login shell.

Options:
  -c, --config FILE     Load specified config file
  -e, --exec            Treat remaining arguments as the command to execute
  -h, --hold never|start|error|always  Keep window open after command finishes
  -i, --icon FILE[,IX]  Load window icon from file, optionally with index
  -l, --log FILE|-      Log output to file or stdout
  -o, --option OPT=VAL  Override config file option with given value
  -p, --position X,Y    Open window at specified coordinates
  -s, --size COLS,ROWS  Set screen size in characters
  -t, --title TITLE     Set window title (default: the invoked command)
  -u, --utmp            Create a utmp entry
  -w, --window normal|min|max|full|hide  Set initial window state
      --class CLASS     Set window class name (default: mintty)
  -H, --help            Display help and exit
  -V, --version         Print version information and exit

我的目录cygwin.bat中没有cygwin64\bin

cygwin.bat在我的情况下,位于基本 cygwin 安装目录中/c/cygwin(也是C:\cygwin)。

DavidPostill@Hal /c/cygwin
$ cd /c/cygwin

DavidPostill@Hal /c/cygwin
$ ls
bin  Cygwin.bat  Cygwin.ico  Cygwin-Terminal.ico  dev  etc  home  lib  sbin  tmp  usr  var

DavidPostill@Hal /c/cygwin
$ cat cygwin.bat
@echo off

C:
chdir C:\cygwin\bin

bash --login -i

相关内容