当前位置:网站首页>VIM specifies the line comment and reconciliation comment
VIM specifies the line comment and reconciliation comment
2022-04-23 15:45:00 【Mo Chi_】
1.vim Bottom command mode
1.64 to 74 Insert... At the beginning of the line "#":
64, 74 s/^/#/g
64 #[Running] python -u "\Py\deco_1.py"
65 #enter deco3 (foo)
66 #enter deco2 (wrap_3)
67 #enter deco1 (wrap_2)
68 #enter wrapers_1 (2, 3)
69 #enter wrapers_2 (2, 3)
70 #enter wrapers_3 (2, 3)
71 #exit wrapper_3 result + 3:11
72 #exit wrapper_2 result + 1:12
73 #exit wrapper_1 result * 2:24
74 #24
1.64 to 74 Line header deletion "#":
64,74 s/^#//g
64 [Running] python -u "\Py\deco_1.py"
65 enter deco3 (foo)
66 enter deco2 (wrap_3)
67 enter deco1 (wrap_2)
68 enter wrapers_1 (2, 3)
69 enter wrapers_2 (2, 3)
70 enter wrapers_3 (2, 3)
71 exit wrapper_3 result + 3:11
72 exit wrapper_2 result + 1:12
73 exit wrapper_1 result * 2:24
74 24
2. Its essence is regular matching replacement
版权声明
本文为[Mo Chi_]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231543352914.html
边栏推荐
- 怎么看基金是不是reits,通过银行购买基金安全吗
- The length of the last word of the string
- 【自娱自乐】构造笔记 week 2
- 网站建设与管理的基本概念
- The principle and common methods of multithreading and the difference between thread and runnable
- Neodynamic Barcode Professional for WPF V11. 0
- CVPR 2022 quality paper sharing
- Spark 算子之交集、并集、差集
- Basic greedy summary
- php类与对象
猜你喜欢
随机推荐
山寨版归并【上】
cadence SPB17.4 - Active Class and Subclass
vim指定行注释和解注释
【AI周报】英伟达用AI设计芯片;不完美的Transformer要克服自注意力的理论缺陷
utils. Deprecated in35 may be cancelled due to upgrade. What should I do
MySQL Cluster Mode and application scenario
Redis master-slave replication process
Spark 算子之sortBy使用
Independent operation smart farm Innovation Forum
PHP classes and objects
Named in pytoch_ parameters、named_ children、named_ Modules function
提取不重复的整数
Large factory technology implementation | industry solution series tutorials
For examination
服务器中毒了怎么办?服务器怎么防止病毒入侵?
【自娱自乐】构造笔记 week 2
Calculate the number of occurrences of a character
Node. JS ODBC connection PostgreSQL
utils.DeprecatedIn35 因升级可能取消,该如何办
cadence SPB17. 4 - Active Class and Subclass








