etags

How can I use DoctorJS with Emacs?

僤鯓⒐⒋嵵緔 提交于 2020-02-01 20:13:07
问题 Is there a way to use DoctorJS (apparently it used to be called jsctags) to generate a TAGS file for Emacs? I've been looking around and it seems to always use the vi tags style, but I could be missing something very obvious. 回答1: doctorjs does not appear to output emacs style tags. It does not accept the -e option. Probably it would not be that difficult to add emacs tag support, as both emacs and vim tag files are a very simple format. 回答2: Please try this fork, which does support the -e

How can I use DoctorJS with Emacs?

心不动则不痛 提交于 2020-02-01 20:12:02
问题 Is there a way to use DoctorJS (apparently it used to be called jsctags) to generate a TAGS file for Emacs? I've been looking around and it seems to always use the vi tags style, but I could be missing something very obvious. 回答1: doctorjs does not appear to output emacs style tags. It does not accept the -e option. Probably it would not be that difficult to add emacs tag support, as both emacs and vim tag files are a very simple format. 回答2: Please try this fork, which does support the -e

How to use etags for caching?

余生颓废 提交于 2020-01-14 13:05:30
问题 Can anyone tell me how to pass etag correctly for this url? https://www.googleapis.com/youtube/v3/playlistItems?part=snippet,id&playlistId=UUwpy_3CqtfwM7tg2JgQQQyA&maxResults=50&key={API_KEY}. I was passing like this, but didn't work. https://www.googleapis.com/youtube/v3/playlistItems?part=snippet,id&playlistId=UUwpy_3CqtfwM7tg2JgQQQyA&maxResults=50&key={API_KEY}&If-None-Match="p4VTdlkQv3HQeTEaXgvLePAydmU/vKZr9jiSytaO7UdTbhKbIrwbX20" 来源: https://stackoverflow.com/questions/59587979/how-to

Default regular expression for etags

房东的猫 提交于 2020-01-02 13:32:54
问题 I'd like to create additional regular expressions for use with etags, but I'd like them to be based upon what's already there (in particular, I'd like to add [ \t]* to the current set of regular expressions that etags uses). What are the default set of regular expressions that etags uses for .lisp files? 回答1: etags doesn't generally use regular expressions to implement the languages that are built-in. Instead, it has custom parser code for each built-in language. That said, it seems for Lisp

Default regular expression for etags

一个人想着一个人 提交于 2020-01-02 13:31:16
问题 I'd like to create additional regular expressions for use with etags, but I'd like them to be based upon what's already there (in particular, I'd like to add [ \t]* to the current set of regular expressions that etags uses). What are the default set of regular expressions that etags uses for .lisp files? 回答1: etags doesn't generally use regular expressions to implement the languages that are built-in. Instead, it has custom parser code for each built-in language. That said, it seems for Lisp

Default regular expression for etags

时光总嘲笑我的痴心妄想 提交于 2019-12-06 12:21:58
I'd like to create additional regular expressions for use with etags, but I'd like them to be based upon what's already there (in particular, I'd like to add [ \t]* to the current set of regular expressions that etags uses). What are the default set of regular expressions that etags uses for .lisp files? etags doesn't generally use regular expressions to implement the languages that are built-in. Instead, it has custom parser code for each built-in language. That said, it seems for Lisp to look for just a few forms, that could be handled by regular expressions: It looks for "(" in the first