You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run universal ctags on Windows, the tags files contain paths with two backslashes. This is annoying because it's visible in Vim when I jump to the tag definition. Consider this line from my tags file for LLVM:
ilist_node_with_parent llvm-project\\llvm\\include\\llvm\\ADT\\ilist_node.h /^class ilist_node_with_parent : public ilist_node<NodeTy, Options...> {$/;" c namespace:llvm
In Vim, the displayed file path is llvm-project\\llvm\\include\\llvm\\ADT\\ilist_node.h, instead of llvm-project\llvm\include\llvm\ADT\ilist_node.h.
It would be nice if there was an option to force the use of forward slashes on Windows, which appear to do the right thing in Vim.