• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    如何在power shell添加vim实现代码示例

    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

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

    上一篇:基于docker启动nginxssl配置
    下一篇:Docker Swarm集群管理的使用及原理解析
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯

    时间:9:00-21:00 (节假日不休)

    地址:江苏信息产业基地11号楼四层

    《增值电信业务经营许可证》 苏B2-20120278

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