Where is the .ctags file on Windows?

I am trying to use ctags with my python project, but I ran into a problem that ctags recognizes import strings as definitions. I found a tip to add a line:

- Python type = -iv

into my ~ / .ctags file. However, I am doing this from a Windows computer and cannot find the equivalent of the .ctags file. I tried looking in my $ HOME directory as well as in my ctags directory. I tried to solve this problem, but I had no luck.

This is the file I need to create, and if so, where to put it? In the same directory as the tag file I am creating?

+4
source share
2 answers

The HOMEDRIVE and HOMEPATH environment variables determine the location of $ HOME.

This page shows an example of setting up ctags $ HOME on Windows.

+3
source

The sysinternals process monitor is away from equivalent windows; run it and see what ctags files are looking for at startup.

+1
source

Source: https://habr.com/ru/post/1480143/


All Articles