《Vim Portable》最新版

大小:33.73MB

版本:8.2.1101

语言:简中

更新:2020-07-02

普通下载 安全下载通过电脑助手防捆绑下载
资源说明

《Vim Portable》是一款著名的文本编辑器,使用linux系统的朋友应该对他不陌生。这是VI编辑器的加强版,这次小编给大家带来的是他的windows版本,它有着强大的功能,代码补完、编译及错误跳转等实用的功能让它受到全世界范围内的欢迎。

软件简介

gVim Portable(文字编辑工具)是从vi发展出来的一个文本编辑辅助工具。代码补完、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用。和Emacs并列成为类Unix系统用户最喜欢的编辑器。Vim的第一个版本由Bram Moolenaar在1991年发布。最初的简称是Vi IMitation ,随着功能的不断增加,正式名称改成了Vi IMproved。现在是在开放源代码方式下发行的慈善软件。

软件配置

配置 curl

在windows下安装curl与msysgit结合非常简单,只需要在git的cmd目录创建文件curl.cmd即可

路径:C:\Program Files\Git\cmd\curl.cmd ,文件内容如下

@rem Do not use "echo off" to not affect any child calls.

@setlocal

@rem Get the abolute path to the parent directory, which is assumed to be the

@rem Git installation root.

@for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI

@set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%git_install_root%\mingw64\bin;%PATH%

@rem !!!!!!! For 64bit msysgit, replace 'mingw' above with 'mingw64' !!!!!!!

@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%

@if not exist "%HOME%" @set HOME=%USERPROFILE%

@curl.exe %*

打开cmd 命令提示符,运行命令( curl –version )检查curl 版本号

好了,我们开始安装 vundle 了,也很简单

安装Vundle (Vundle on Windows)

A、打开cmd 命令提示符,只要运行一条命令即可,我们将vundle安装到 C:\Program Files (x86)\Vim\vimfiles 目录,目录如下:

git clone https://github.com/gmarik/Vundle.vim.git C:\Program Files (x86)\Vim\vimfiles\bundle\Vundle.vim

B、添加一个gvim目录的 环境变量 $VIM ,步骤 :我的电脑->属性->高级系统设置->高级->环境变量->新建

C、在vim启动设定文件_vimrc添加 bundle的配置 ,vim的启动设定文件 _vimrc (在linux文件名是 .vimrc , 在windows下面是 _vimrc);这里直接配置一个全局的 _vimrc 文件,路径:C:\Program Files (x86)\Vim\_vimrc  , 添加如下内容

"插件管理

set rtp+=$VIM\vimfiles\bundle\Vundle.vim\

call vundle#begin()

"let Vundle manage Vundle, required

Plugin 'VundleVim/Vundle.vim'

"my bundle plugin

call vundle#end()

filetype plugin indent on

在Github vim-scripts 用户下的repos,只需要写出repos名称

在Github其他用户下的repos, 需要写出”用户名/repos名”

不在Github上的插件,需要写出git全路径

D、Bundle 插件管理器使用

相关命令

安装插件:BundleInstall

更新插件:BundleUpdate

清除不再使用的插件:BundleClean

列出所有插件:BundleList

查找插件:BundleSearch

软件截图

《Vim Portable》最新版

《Vim Portable》最新版

《Vim Portable》最新版

同类推荐
更多