added further notation about ctags

This commit is contained in:
tomit4 2022-06-16 20:34:18 -07:00
parent 3cc2695007
commit ae93e5b24b

View file

@ -9,3 +9,9 @@ ctags
Which will create a txt file called tags Which will create a txt file called tags
This will be referenced when we need to use it in the project. From our text editor we can then invoke CTRL+} or CTRL+] to invoke ctags, which will then take us to the file and the line where that variable was first created (extremely useful!). This will be referenced when we need to use it in the project. From our text editor we can then invoke CTRL+} or CTRL+] to invoke ctags, which will then take us to the file and the line where that variable was first created (extremely useful!).
We also can to the same in nvim by:
:ta some_variable
And it will do the same, searching for the file and line where some_variable was defined.