以前一直在windows下面都是使用的 mintty 或者是 rxvt 做为winsows下面的console环境,
但mintty和git环境的配合实在是太差了,而且好像没办法使用zsh,受够了不能自动完成的苦。
所以今天在网上找了一圈,看能不能用console实现这个目标:
下载console
http://sourceforge.net/projects/console/files/console-devel/
`</pre>
下载下来的应该是一个压缩包,直接解压就可以使用。
tab添加办法:
*console setting -> Tabs -> shell *
* * *
# mingw 的设置
<pre>`cmd.exe /c "bash.exe --login -i "
`</pre>
<del>C:\MinGW\msys\1.0\bin\bash.exe --login -i -c "cd ~;exec /bin/bash"</del>
# --------------------中文乱码解决方案--------------------
## ls显示中文不正常解决方法:
<pre>`/etc/profile
`</pre>
## 添加
<pre>`alias ls='ls --show-control-chars -F --color=tty'
`</pre>
## 输入中文不正常解决方法:
<pre>`/etc/inputrc.default
~/.inputrc
`</pre>
## 更改
<pre>`set meta-flag on
set input-meta on
set output-meta on
set convert-meta off
---------------------------------------------------------
重新启动msys后中文乱码问题解决
`</pre>
* * *
# cygwin的设置
<pre>`D:\Program\cygwin\bin\zsh.exe --login -i
`</pre>
安装 zsh的教程见ubuntu基本设置那篇
以上设置已经能很好的运行了,但我还想再进一步。跟linux下一样,能快捷键调出命令行窗口。
我使用的是ahk脚本
安装ahk软件后,在启动项里添加 AutoRun.ahk,或者其它名字
在里面添加
; ctrl + alt + t = terminal
^!t::
run, D:\Program\Console2\Console.exe
<pre>`return