当前目录:
[mirror@home libevent]$ ls
arc4random.c bufferevent_sock.c epoll.c event_tagging.c evutil.c l Makefile.am strlcpy-internal.h
autogen.sh buffer_iocp.c epoll_sub.c evmap.c evutil_rand.c libevent_openssl.pc.in Makefile.nmake test
b changelist-internal.h evbuffer-internal.h evmap-internal.h evutil_time.c libevent.pc.in minheap-internal.h time-internal.h
buffer.c ChangeLog evconfig-private.h.in evport.c ht-internal.h libevent_pthreads.pc.in mm-internal.h util-internal.h
bufferevent_async.c ChangeLog-1.4 evdns.3 evrpc.c http.c LICENSE poll.c whatsnew-2.0.txt
bufferevent.c ChangeLog-2.0 evdns.c evrpc-internal.h http-internal.h listener.c ratelim-internal.h whatsnew-2.1.txt
bufferevent_filter.c compat event.3 evsignal-internal.h include log.c README WIN32-Code
bufferevent-internal.h configure.in event.c evthread.c iocp-internal.h log-internal.h sample win32select.c
bufferevent_openssl.c defer-internal.h event-internal.h evthread-internal.h ipv6-internal.h m4 select.c
bufferevent_pair.c devpoll.c event_iocp.c evthread_pthread.c kqueue.c make_epoll_table.py signal.c
bufferevent_ratelim.c Doxyfile event_rpcgen.py evthread_win32.c kqueue-internal.h make-event-config.sed strlcpy.c
测试目录中有一些文件:
[mirror@home libevent]$ ls test/
bench.c Makefile.am regress_dns.c regress_listener.c regress_ssl.c regress_zlib.c test-fdleak.c test-time.c tinytest_local.h
bench_cascade.c Makefile.nmake regress_et.c regress_main.c regress_testutils.c rpcgen_wrapper.sh test-init.c test-weof.c tinytest_macros.h
bench_http.c regress_buffer.c regress.h regress_minheap.c regress_testutils.h test-changelist.c test-ratelim.c tinytest.c
bench_httpclient.c regress_bufferevent.c regress_http.c regress.rpc regress_thread.c test-dumpevents.c test-ratelim.sh tinytest_demo.c
check-dumpevents.py regress.c regress_iocp.c regress_rpc.c regress_util.c test-eof.c test.sh
有很多文件在测试目录中有main()函数:
[mirror@home libevent]$ find test/ -regex .*.c -exec grep main {} +
test/regress.c:struct testcase_t main_testcases[] = {
test/test-weof.c:main(int argc, char **argv)
test/regress_dns.c:/* FIXME: We should move this to regress_main.c if anything else needs it.*/
test/regress_buffer.c: size_t remaining;
test/regress_buffer.c: remaining = v[0].iov_len - 512;
test/regress_buffer.c: tt_int_op(remaining, ==, v[0].iov_len);
test/regress_buffer.c: remaining -= 8;
test/regress_buffer.c: n = evbuffer_reserve_space(buf, remaining+64, v, 2);
test/regress_buffer.c: tt_int_op(remaining, ==, v[0].iov_len);
test/regress_buffer.c: remaining -= 1;
test/regress_buffer.c: n = evbuffer_reserve_space(buf, remaining+64, v, 2);
test/regress_buffer.c: tt_int_op(remaining, ==, v[0].iov_len);
test/regress_buffer.c: /* Drain some of the remaining chunk, then add it to another buffer */
test/regress_main.c: { "main/", main_testcases },
test/regress_main.c:main(int argc, const char **argv)
test/regress_main.c: if (tinytest_main(argc,argv,testgroups))
test/tinytest.c:static int in_tinytest_main = 0; /**< true if we're in tinytest_main().*/
test/tinytest.c: if (!in_tinytest_main) {
test/tinytest.c: " called from within tinytest_main.\n");
test/tinytest.c:tinytest_main(int c, const char **v, struct testgroup_t *groups)
test/tinytest.c: ++in_tinytest_main;
test/tinytest.c: --in_tinytest_main;
test/test-eof.c:main(int argc, char **argv)
test/test-ratelim.c:main(int argc, char **argv)
test/tinytest_demo.c:main(int c, const char **v)
test/tinytest_demo.c: /* Finally, just call tinytest_main(). It lets you specify verbose
test/tinytest_demo.c: return tinytest_main(c, v, groups);
test/test-time.c:main(int argc, char **argv)
test/bench_cascade.c:main(int argc, char **argv)
test/test-dumpevents.c: remain in the future.
test/test-dumpevents.c:main(int argc, char **argv)
test/test-changelist.c:main(int argc, char **argv)
test/test-init.c:main(int argc, char **argv)
test/test-fdleak.c:main(int argc, char **argv)
test/bench_http.c:main(int argc, char **argv)
test/bench.c:main(int argc, char **argv)
test/bench_httpclient.c:main(int argc, char **argv)
但在我使用之后:
ctags -R .
打开vim,然后
:tag main
:g ]
状态栏只显示:
E433: No tags file
E426: tag not found: main
怎么了? 标签文件已加载,为什么没有标签文件?令人困惑......
似乎ctags生成的索引包含这些包含main函数的文件:
3643 main sample/dns-example.c /^main(int c, char **v) {$/;" f
3644 main sample/event-read-fifo.c /^main(int argc, char **argv)$/;" f
3645 main sample/hello-world.c /^main(int argc, char **argv)$/;" f
3646 main sample/http-server.c /^main(int argc, char **argv)$/;" f
3647 main sample/le-proxy.c /^main(int argc, char **argv)$/;" f
3648 main sample/signal-test.c /^main(int argc, char **argv)$/;" f
3649 main sample/time-test.c /^main(int argc, char **argv)$/;" f
3650 main test/bench.c /^main(int argc, char **argv)$/;" f
3651 main test/bench_cascade.c /^main(int argc, char **argv)$/;" f
3652 main test/bench_http.c /^main(int argc, char **argv)$/;" f
3653 main test/bench_httpclient.c /^main(int argc, char **argv)$/;" f
3654 main test/regress_main.c /^main(int argc, const char **argv)$/;" f
3655 main test/test-changelist.c /^main(int argc, char **argv)$/;" f
3656 main test/test-dumpevents.c /^main(int argc, char **argv)$/;" f
3657 main test/test-eof.c /^main(int argc, char **argv)$/;" f
3658 main test/test-fdleak.c /^main(int argc, char **argv)$/;" f
3659 main test/test-init.c /^main(int argc, char **argv)$/;" f
3660 main test/test-ratelim.c /^main(int argc, char **argv)$/;" f
3661 main test/test-time.c /^main(int argc, char **argv)$/;" f
3662 main test/test-weof.c /^main(int argc, char **argv)$/;" f
3663 main test/tinytest_demo.c /^main(int c, const char **v)$/;" f
3664 main_callback sample/dns-example.c /^main_callback(int result, char type, int count, int ttl,$/;" f file:
3665 main_testcases test/regress.c /^struct testcase_t main_testcases[] = {$/;" v typeref:struct:testcase_t
但为什么标签main,g]找不到包含main函数的文件列表?
romainl的解决方案适用于:标记名称,即使启用了autochdir
我已经运行:set tags =。/ tags,tags,即使当前dir被更改为其他目录,因为autochdir已启用,但是g]可能无法正常工作,为什么?
但g]有时不起作用:
错误信息 E257:cstag:tag not found
编辑2 :.vimrc的内容
cat ~/.vimrc
set autoindent
colorscheme desert
set number
答案 0 :(得分:5)
E433
错误意味着Vim找不到您的tags
文件,因此, 标签文件尚未加载。
键入:set tags
应输出类似:
./tags,tags
这是默认值,它表示“在当前目录中查找位于当前文件然后目录中的tags
文件”。
因为您有set autochdir
,所以最终可能会出现在没有tags
文件的目录中。例如,在test
中。
要确保Vim找到您的tags
文件,您应该使用以下内容:
set tags=./tags,tags;$HOME
这意味着“查找位于当前目录中的当前文件然后目录中的tags
文件然后在任何父目录中,直到{ {1}}”。
修改强> 的
嗯,上面的设置对我来说已经有一段时间了。但这是我刚做的小实验(当然是$HOME
):
我在set autochdir
只包含一个文件~/workspace/accordion/
。
我做accordion.js
:$ ctags -R .
已创建。
我做~/workspace/accordion/tags
。
我做$ mkdir -p aa/bb/cc/dd/ee/ff
。
在Vim中,我执行$ vim aa/bb/cc/dd/ee/ff/test.js
跳转到:tag *mini
方法的声明,mini()
构造函数的成员Accordion()
,正如预期的那样。
因为我的~/workspace/accordion/accordion.js
Vim中的set tags=./tags,tags;$HOME
已正确地从dir抓取到dir,直到达到~/.vimrc
。即使我在一个不切实际的深层文件树中深陷。
~/worspace/accordion/tags
当另一位评论者反复问你但没有成功时,当你在子目录中时Is there an accordion/aa/bb/cc/dd/ee/ff/tags ? no, let's go up…
Is there an accordion/aa/bb/cc/dd/ee/tags ? no, let's go up…
Is there an accordion/aa/bb/cc/dd/tags ? no, let's go up…
Is there an accordion/aa/bb/cc/tags ? no, let's go up…
Is there an accordion/aa/bb/tags ? no, let's go up…
Is there an accordion/aa/tags ? no, let's go up…
Is there an accordion/tags ? yes! let's scan it!
的输出是什么?这是另一个请求::pwd
的输出是什么?