如何在power shell添加vim实现代码示例
1、去Vim官网下载适合操作系统的可执行文件
地址:https://www.vim.org/download.php#pc
2、找到Vim文件夹中的vimrc文件进行修改,增加下面这4行。
setencoding=utf-8
settermencoding=utf-8
setfileencoding=utf-8
setfileencodings=ucs-bom,utf-8,chinese,cp936
3、在C:\Windows\System32\WindowsPowerShell\v1.0目录下新建profile.ps1文件,复制下面的代码到profile.ps1文件中。
#There'susuallymuchmorethanthisinmyprofile!
$SCRIPTPATH="C:\ProgramFiles(x86)\Vim"
$VIMPATH=$SCRIPTPATH+"\vim80\vim.exe"
Set-Aliasvi$VIMPATH
Set-Aliasvim$VIMPATH
#foreditingyourPowerShellprofile
FunctionEdit-Profile
{
vim$profile
}
#foreditingyourVimsettings
FunctionEdit-Vimrc
{
vim$home\_vimrc
}
4、重启Shell,执行Set-ExecutionPolicyRemoteSigned命令修改模式就可以了。
Set-ExecutionPolicyRemoteSigned
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
