当前位置:网站首页>[Development Miscellaneous][Editor][Code Reading]ctags & vim
[Development Miscellaneous][Editor][Code Reading]ctags & vim
2022-08-04 06:32: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’
边栏推荐
- 使用JS在浏览器中打印菱形
- C语言无符号整型运算
- MNIST Handwritten Digit Recognition - Lenet-5's First Commercial Grade Convolutional Neural Network
- MNIST Handwritten Digit Recognition - From Perceptrons to Convolutional Neural Networks
- Pytest common plug-in
- 抽象类、内部类和接口
- No matching function for call to ‘RCTBridgeModuleNameForClass‘
- LeetCode_22_Apr_2nd_Week
- LeetCode_Nov_4th_Week
- MNIST Handwritten Digit Recognition - Building a Perceptron from Zero for Two-Classification
猜你喜欢

arm learning-1-development board

Amazon Cloud Technology Build On 2022 - AIot Season 2 IoT Special Experiment Experience

Golang环境变量设置(二)--GOMODULE&GOPROXY

MNIST Handwritten Digit Recognition - Building a Perceptron from Zero for Two-Classification
![[Deep Learning Diary] Day 1: Hello world, Hello CNN MNIST](/img/06/6f49260732e5832edae2ec80aafc99.png)
[Deep Learning Diary] Day 1: Hello world, Hello CNN MNIST

MNIST手写数字识别 —— 从零构建感知机实现二分类

MNIST手写数字识别 —— 从二分类到十分类

2020-03-27

MNIST Handwritten Digit Recognition - Image Analysis Method for Binary Classification

代码庆端午--粽你心意
随机推荐
在AWS-EC2中安装Minikube集群
arm learning-1-development board
[日常办公][ssh]cheatsheet
库函数的模拟实现-C语言
如何成长为高级工程师?
彻底删除MySQL教程
const int * a 与 int * const a 的定义与区别
LeetCode_Dec_1st_Week
tmux概念和使用
Deep learning, "grain and grass" first--On the way to obtain data sets
LeetCode_Nov_5th_Week
LeetCode_Dec_1st_Week
抽象类、内部类和接口
sbl_init.asm-适合在编辑模式下看
Chapter One Introduction
多线程顺序输出
The second official example analysis of the MOOSE platform - about creating a Kernel and solving the convection-diffusion equation
剪映专业版字幕导出随笔
MVC自定义配置
CAS无锁队列的实现