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

本站所有内容来自互联网收集,仅供学习和交流,请勿用于商业用途。如有侵权、不妥之处,请第一时间联系我们删除!Q群:迪思分享

免费资源网 – https://freexyz.cn/

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

地址:https://www.vim.org/download.php#pc

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:WindowsSystem32WindowsPowerShellv1.0目录下新建profile.ps1文件,复制下面的代码到profile.ps1文件中。

# Theres usually much more than this in my profile! $SCRIPTPATH = “C:Program Files (x86)Vim” $VIMPATH = $SCRIPTPATH + “vim80vim.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

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

免费资源网 – https://freexyz.cn/


© 版权声明
THE END
★喜欢这篇文章吗?喜欢的话,麻烦动动手指支持一下!★
点赞10 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容