当前位置:网站首页>[开发杂项][编辑器][代码阅读]ctags&vim
[开发杂项][编辑器][代码阅读]ctags&vim
2022-08-04 05:30:00 【xcy6666】
~/.ctags
ctags --recurse=yes --exclude=.git
generate tags for vim
- cadd config at ~/
$ cat ~/.tags
--recurse=yes
--exclude=.git
--exclude=BUILD
--exclude=.svn
--exclude=*.js
--exclude=vendor/*
--exclude=node_modules/*
--exclude=db/*
--exclude=log/*
--exclude=\*.min.\*
--exclude=\*.swp
--exclude=\*.bak
--exclude=\*.pyc
--exclude=\*.class
--exclude=\*.sln
--exclude=\*.csproj
--exclude=\*.csproj.user
--exclude=\*.cache
--exclude=\*.dll
--exclude=\*.pdb
- generate
$ cd ~/ws/proj/
$ ctags
# ctags --recurse=yes --exclude=.git
- start navigate tag
$ vim -t <main>
- list all tags
:tags
- jump to current
<tag>
definitionctrl + ]
- jump back to prev tag
ctrl + T
- select tag
:ts <tag>
- jump to next match
:tn
- jump to previou match
:tp
- jump directly
:tag main
, jump to main directly:tag /^get
, jump to lable match^get
, i.e. start with ‘get’
边栏推荐
- 基于BiGRU和GAN的数据生成方法
- MNIST handwritten digit recognition, sorted by from two to ten
- MFC读取点云,只能正常显示第一个,显示后面时报错
- MNIST手写数字识别 —— 图像分析法实现二分类
- [Copy Siege Lion Log] Flying Pulp Academy Intensive Learning 7-Day Punch Camp-Study Notes
- 【深度学习日记】第一天:Hello world,Hello CNN MNIST
- tensorRT教程——tensor RT OP理解(实现自定义层,搭建网络)
- LeetCode_Nov_3rd_Week
- MNIST手写数字识别 —— ResNet-经典卷积神经网络
- 在AWS-EC2中安装Minikube集群
猜你喜欢
详解近端策略优化
PCL1.12 解决memory.h中EIGEN处中断问题
【论文阅读】Multi-View Spectral Clustering with Optimal Neighborhood Laplacian Matrix
AWS使用EC2降低DeepRacer的训练成本:DeepRacer-for-cloud的实践操作
Deep Learning Theory - Initialization, Parameter Adjustment
arm学习-1-开发板
【论文阅读】Anchor-Free Person Search
MNIST手写数字识别 —— 从零构建感知机实现二分类
Pytest常用插件
No matching function for call to ‘RCTBridgeModuleNameForClass‘
随机推荐
Rules.make-适合在编辑模式下看
Halcon缺陷检测
Install Minikube Cluster in AWS-EC2
数据库的简述与常用操作指南
Thunderbolt turns off automatic updates
迅雷关闭自动更新
target has libraries with conflicting names: libcrypto.a and libssl.a.
图像resize
强化学习中,Q-Learning与Sarsa的差别有多大?
【代码学习】
CSDN spree -- college round table spree
软著撰写注意事项
LeetCode_Nov_4th_Week
arm-2-基础阶段
【CV-Learning】Object Detection & Instance Segmentation
(导航页)OpenStack-M版-双节点手工搭建-附B站视频
亚马逊云科技 Build On 2022 - AIot 第二季物联网专场实验心得
机器学习——分类问题对于文字标签的处理(特征工程)
Postgresql snapshot
卷积神经网络入门详解