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

Marmara ·
更新时间:2024-09-20
· 865 次阅读

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:\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基本使用教程PowerShell 指令操作集合(小结)如何利用PowerShell监控Win-Server性能详解PowerShell中Job相关命令及并行执行任务详解基于PowerShell在Ubuntu系统的使用详解PowerShell 远程执行任务的方法步骤powershell玩转SQL SERVER所有版本的方法



power 示例 vim shell

需要 登录 后方可回复, 如果你还没有账号请 注册新账号