AndroidStudio 默认的 Terminal 编辑器位 cmd,我们可以将它更换为其他编辑器。
更换为git-bash
打开 AndroidStudio 的Settings 页面,Tools -> Terminal,设置 Shell path 为本机中 git-bash.exe 的路径。
再次打开 Terminal,发现页面变了
在这里插入图片描述
个人感觉 git-bash 比 Windows 的 cmd 方便多了,使用Git的时候也可以按 Tab 键自动补全。但是在编写提交日志的时候不能换行。只能 git commit -m "描述"
将Git编辑器更换为VIM
git config --global core.editor vim
设置成功后输入命令 git commit 就可以弹出编辑框编写内容,但是在编辑中文的时候发现中文乱码
修改VIM中文乱码
Terminal 中输入一下命令
vim ~/.bashrc
英文模式下按 i 进入编辑模式,打开文件后增加
export LANG=zh_CN.UTF-8
export LC_CTYPE="zh_CN.UTF-8"
按Esc退出编辑模式,保存
:wq
启用文件
source ~/.bashrc
再次 git commit 进入 VIM 就可以输入中文了。
网友评论