解决Cygwin中vim的backspace不能正常使用(转)
2020-12-13 05:05
标签:blog http 使用 数据 width art 转载于:http://blog.chinaunix.net/uid-20614631-id-1914849.html 亲测可用 先把Cygwin下载下来,想在linux下编程的话一定要安装vim,gcc和gdb,现在主要是解决vim中backspace不能正常 使用的问题。Cygwin安装之后打开显示的应该是这样的格式 USERNAME@COMPUTERNAME ~ set nocompatible //over 解决Cygwin中vim的backspace不能正常使用(转),搜素材,soscw.com 解决Cygwin中vim的backspace不能正常使用(转) 标签:blog http 使用 数据 width art 原文地址:http://www.cnblogs.com/Dzhouqi/p/3854952.html
现在是在/home/username路径下,比如说我的用户名字是grass,计算机名字是WJK,现进行如下操作:
GRASS@WJK $ cd /home/grass
GRASS@WJK $ vim .vimrc 然后输入下面一段设置:
//start
set backspace=indent,eol,start
set ruler
set showcmd
set wildmenu
set fo=cqrt
set laststatus=2
set textwidth=78
set ww=,h,l
set autoindent
" set no error bells
set noeb visualbell
set expandtab
set tabstop=4
set shiftwidth=4
set expandtab
let mapleader = ","
syn on
filetype on
filetype plugin on
filetype indent on
最后:wq
现在vim操作基本上没有问题了,而且在编写c程序时还会自动标识数据类型,常量,关键字等。不过还有许多设置网上应该都有。
文章标题:解决Cygwin中vim的backspace不能正常使用(转)
文章链接:http://soscw.com/essay/30395.html