I am creating a cscope database from cscope.files which has reference to files in current and parent directories, say the cscope.files content be
foo\file1.c
..\..\foo1\file2.c
When I search for a text/variable from cscope input field, the display screen does not shows the parent path entries, say it displays
0 file1.c text
2 file1.c text
But if I did a selection of 1
it is jumping to parent path entry in file2.c
. I tried creating the cscope database with absolute path by providing -P
option but both behaves the same.
Please let me know on how ti fix this error.