PowerShell使用Vim的方法

PowerShell使用Vim的方法

最近一直在Windows平台下测试Git代码管理的功能,因为自己代码写的十分乱,想要快速掌握Git的用法来对代码进行管理。我发现在Powershell下却不能使用Vim进行编辑,这让我十分难受,毕竟习惯了在Linux下操作。下面来看看怎么能够在Powershell下使用Vim。

1、去Vim官网下载适合操作系统的可执行文件

因为我下的GitHub安装包里自带了vim,所以我就直接进行的配置。

2、找到Vim文件夹中的vimrc文件进行修改,增加下面这4行。

set encoding=utf-8
set termencoding=utf-8
set fileencoding=utf-8
set fileencodings=ucs-bom,utf-8,chinese,cp936
3、在C:\Windows\System32\WindowsPowerShell\v1.0目录下新建profile.ps1文件,复制下面的代码到profile.ps1文件中。

# There's usually much more than this in my profile!
$SCRIPTPATH = "C:\Program Files (x86)\Vim"
$VIMPATH    = $SCRIPTPATH + "\vim80\vim.exe"

Set-Alias vi   $VIMPATH
Set-Alias vim  $VIMPATH

# for editing your PowerShell profile
Function Edit-Profile
{
    vim $profile
}

# for editing your Vim settings
Function Edit-Vimrc
{
    vim $home\_vimrc
}
4、重启Shell,执行Set-ExecutionPolicy RemoteSigned命令修改模式就可以了。

Set-ExecutionPolicy RemoteSigned

PowerShell使用Vim的方法_第1张图片

Powershell已经可以正常使用vim了!


你可能感兴趣的:(软件安装,vim,Powershell使用vim)