欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何在power shell添加vim实现代码示例

程序员文章站 2022-03-04 15:16:33
1、去vim官网下载适合操作系统的可执行文件地址:2、找到vim文件夹中的vimrc文件进行修改,增加下面这4行。set encoding=utf-8set termencoding=utf-8set...

1、去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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。