当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > VI 快速上手

Unix/Linux
Linux下构架qmail邮件系统
linux的运行模式:runlevel
在linux7.1上安装jdk+tomcat+oracle9i 笔记
lilo大杂耍
linux下的dns设置详解
使用 find 搜索文件
Linux历史篇
kerneld mini-HOWTO
Linux 核心--16.Linux数据结构
Linux 核心--17.关于Linux的Web与FTP站点 --18.作者简介
Linux 核心--13.Linux动态模块
Linux 核心--14.处理器
Linux 核心--15.Linux内核资源
Linux 核心--12.Linux内核机制
Linux 核心--11.网络
Linux 核心--10.文件系统
Linux 核心--9.设备驱动
Linux 核心--7.PCI设备
Linux 核心--8.中断与中断处理
Linux 核心--6.进程间通讯机制

Unix/Linux 中的 VI 快速上手


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 109 ::
收藏到网摘: n/a

  按键             功能
h                 left

j                  down

k                 up

l                  right

nh               n char left

nj                n char down

w                 fwd word

b                 back word

H                 upper left of screen

M                 mid screen

L                  lowest line of screen

G                  bottom of file

nG                to line n

0                  begin line

$                  end line

i                   insert before

a                  insert after

A                  ins end line

o                  opens line

O                 opens line above

xp                 transpose

J                   join lines

rC                 rep char "C"

r                   rep with <CR>

R                  rep to esc

u                  undoes last

x                  del char

dw               del word

nx                del n char

ndw             del n words

dd                del line

ndd              del n lines

D                 to end the line

^L                redraw screen

z                  current line to top

z-                 current line to bottom

z.                 line to middle screen

^F                page fwd

^B                page back

^D               1/2 page forward

^U               1/2 page back

yy                 stores current line in buffer

nyy      &n