在PowerShell中使用Vim

时间:2017-01-30 20:18:53   收藏:0   阅读:1600

1.需要去Vim官网下载并安装一个可运行于Win8系统的执行文件(ftp://ftp.vim.org/pub/vim/pc/gvim74.exe)。

2.设置PowerShell环境,使能“allow scripts to run”选项,步骤如下:

3.使用new-item命令,创建一个PowerShell的配置文件Profile。

  1. new-item -path $profile -itemtype file -force

4.编辑配置文件(notepad $profile),添加vim相关的alias。

  1. set-alias vim "C:/Program Files/Vim/Vim74/./vim.exe"
  2.  
  3. # To edit the Powershell Profile
  4. # (Not that I‘ll remember this)
  5. Function Edit-Profile
  6. {
  7. vim $profile
  8. }
  9.  
  10. # To edit Vim settings
  11. Function Edit-Vimrc
  12. {
  13. vim $HOME\_vimrc
  14. }

重启PowerShell后,就可以正常使用了

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!