博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vim 行号的显示与隐藏
阅读量:6250 次
发布时间:2019-06-22

本文共 1079 字,大约阅读时间需要 3 分钟。

hot3.png

Vim 行号的显示与隐藏

一、当前文档的显示与隐藏

1 打开一个文档

[root@pcname ~]# vim demo.txtThis is the main Apache HTTP server configuration file.  It contains theconfiguration directives that give the server its instructions.See 
for detailed information.In particular, see
for a discussion of each configuration directive.

2 显示行号 vim 命令 :set number 或者 :set nu

1   2 This is the main Apache HTTP server configuration file.  It contains the  3 configuration directives that give the server its instructions.  4 See 
for detailed information. 5 In particular, see ********为了两位娄行号效果并节省篇幅,此处省略几行******** 16 with "/", the value of ServerRoot is prepended -- so 'log/access_log' 17 with ServerRoot set to '/www' will be interpreted by the 18 server as '/www/log/access_log', where as '/log/access_log' will be 19 interpreted as '/log/access_log'. 20

3 隐藏行号 vim 命令 :set nonumber 或者 :set nonu 即可隐藏

二、所有文档行号的显示与隐藏

根据需求去配置当前用户和所有用户

/etc/vimrc   是系统范围的初始化配置~/.vimrc     个人的vim初始化配置

以当前用户为列

vim ~/.vimrc

我们在配置文件输入set number 或者 set nu 保存即可

参考文档:

转载于:https://my.oschina.net/u/3251146/blog/1931872

你可能感兴趣的文章
南京大学周志华教授当选欧洲科学院外籍院士
查看>>
计算机网络与Internet应用
查看>>
Mars说光场(3)— 光场采集
查看>>
Django 文件下载功能
查看>>
走红日本 阿里云如何能够赢得海外荣耀
查看>>
HTML DOM 之 DOM对象:Document Object Model (文档对象模型)
查看>>
qt 学习之路2
查看>>
算法分析-快速排序QUICK-SORT
查看>>
线上应用故障排查之二:高内存占用
查看>>
第四次作业
查看>>
异常处理汇总 ~ 修正果带着你的Code飞奔吧!
查看>>
百度地图需要的效果-有感
查看>>
BZOJ 1853: [Scoi2010]幸运数字
查看>>
BFS --- 素数环
查看>>
PCIE_DMA:xapp1052学习笔记
查看>>
给报表增加页眉
查看>>
python ----字符串基础练习题30道
查看>>
K 班1-7,alpha,beta 作业成绩汇总
查看>>
uva-10879-因数分解
查看>>
python 调用aiohttp
查看>>