当前位置:网站首页>Vim find character
Vim find character
2022-07-30 07:24:00 【A positive little salted fish】
1. Search from the beginning
Adjust vim to command mode
If the search string is "model", type the command in vim: "/model"
Press Enter and seeThe characters "model" that vim is looking for are highlighted from the beginning
Type lowercase "n" to see the next matching string
Type uppercase "N" to see the previous matching string
2.Search from the end
Adjust vim to command mode
If the search string is "model", type the command in vim: "?model"
Press enter to see what you want from the end of vimThe searched characters "model" are highlighted
Type lowercase "n" to see the next matching string
Type uppercase "N" to see the previous matching string
———————————————
Copyright statement: This article is an original article by CSDN blogger "Ghost Road 2022", and follows the CC 4.0 BY-SA copyright agreement. Please attach the original source link and this statement for reprinting.
Original link: https://blog.csdn.net/qq_38406029/article/details/114966834
边栏推荐
- C语言,库函数中qsort的用法,及解释
- 主机和从机配置,建立ssh连接实现Rviz远程控制
- CPU缓存一致性问题
- [Jiangsu University of Science and Technology Automation Association stm32F103c8t6] Notes [Initial 32 MCU and TIM timing interrupt initialization parameter configuration]
- Difference between logical shift right and arithmetic right shift
- 高集成度 MCU 市场增大,如何加速 BLDC 领域落地应用
- User password encryption using Bcrypt instead of MD5, SHA1 and SHA256
- 昆仑通态屏幕制作(连载3)---基础篇(按钮串口发送)
- QT serial 4: LORA test platform based on QT and STM32H750 (3)
- 干货:线上下单应知应会,快来了解下
猜你喜欢
随机推荐
This beta version of Typora is expired, please download and install a newer;解决方法
关于map对key自定义排序
QT每周技巧(3)~~~~~~~~~串口添加
ipconfig Command Guide
QT串口和CAN数据动态实时显示最后日志
QT每周技巧(2)~~~~~~~~~界面按钮
openssl 1.1.1 compile statement
暂时存着阿里云
CPU的三种工作模式:实模式、保护模式、长模式
ES6语法笔记(ES6~ES11)
Sklearn : train_test_split()函数的用法
如何开发出成功的硬件产品,一个产品由概念的产生到产品的落地量产又需要经历哪些流程呢?
租用服务器训练yolov3模型
QT weekly skills (3)~~~~~~~~~ serial port addition
【正点原子】IIC的学习与使用(未完...)
基于QT的CAN通讯数据实时波形显示(连载八)====“子函数或新类调用ui控件”
js 替换字符串中所有 “ 引号 —— 数据处理
JS的值和引用,复制和传递
About map custom sorting of keys
i++与 ++i 的区别









