Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Feature Requests
 Exclude a file or a folder from Intellisense?

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
KeyC0de Posted - Aug 26 2024 : 04:31:58 AM
Hello,
It would be really beneficial to have a per-file property that allows to remove all intellisense parsing from it.
Even better if this was available to do from a folder or filter, so that we could exclude all intellisense information of all contained files & folders.

Example:
excluding a file from intellisense named my_shadows.cpp
This file contains the function `bool isCastingShadows() const noexcept;`
Now when I open the panel "Find Symbol" and search for `isCastingShadows` I shouldn't be able to find it.

Thanks.

PS. That's for C++.
15   L A T E S T    R E P L I E S    (Newest First)
feline Posted - Sep 09 2024 : 12:21:51 PM
I was hoping it was a pre-compiled 3rd party library. If that was the case, it would just be a matter of making sure you used the external library include settings, so VA would know the included files were not part of the solution.

The latest version of VA will help to fix this problem, for what that's worth.
KeyC0de Posted - Sep 09 2024 : 08:39:35 AM
quote:
Originally posted by feline

Do these 3rd party libraries need to be compiled as part of your solution? Or do you just need to tell the compiler where the header files are, and then link to any pre-compiled library files?

It sounds like you are including the 3rd party library as part of your solution, as if it was code you were editing and working on, rather than treating it as an external library you just use.



They are third party .h & .cpp files which need to be compiled. Some have separate libs/dlls too, but that's another thing.
I guess I could include them in the project compile them once and then exclude them and only re-include them if I change any project properties. But it's tedious to do this.

Thanks for the help anyway.
feline Posted - Sep 09 2024 : 08:32:51 AM
Do these 3rd party libraries need to be compiled as part of your solution? Or do you just need to tell the compiler where the header files are, and then link to any pre-compiled library files?

It sounds like you are including the 3rd party library as part of your solution, as if it was code you were editing and working on, rather than treating it as an external library you just use.
KeyC0de Posted - Sep 07 2024 : 11:44:03 AM
quote:
Originally posted by feline
Since you are opening a solution file, can you not remove the files you don't want parsed from the solution, or make a separate, smaller solution for editing, and have the main solution compiled when doing a build?



I'm sorry for the late reply.
I'm not sure I understand. I am currently including (so not-removing) the files in the solution that I don't want parsed. Those are third party library files that I don't want to debug, or see references of, but I still want to exist in the solution for compilation.
So I always compile the solution with this in mind and I can't get it to work.
Is there something I'm misunderstanding?
feline Posted - Aug 27 2024 : 08:42:36 AM
OK, that explains it. In VA 2476 this setting does work, but it ONLY works if you are opening a folder, not if you are opening a solution file. Since you are opening a solution file, can you not remove the files you don't want parsed from the solution, or make a separate, smaller solution for editing, and have the main solution compiled when doing a build?

VA 2507 added the ability to apply this setting when using a SLN file, and I was testing my test case on the current version, which has this ability.
KeyC0de Posted - Aug 27 2024 : 02:49:21 AM
I have tested the provided project with no changes and it doesn't work at all.
No files are excluded.

Let me give you version details.
I'm not using latest VA version and my version expired some months ago. I have yet to renew.

VA_X64.dll file version 10.9.2476.0 built 2023.01.19
DevEnv.exe version 17.9.34607.119 Community

Could be a bug.
Anyhow, thanks for the help.
feline Posted - Aug 26 2024 : 3:59:14 PM
I have emailed you:

case=164901
KeyC0de Posted - Aug 26 2024 : 10:38:54 AM
Ok, sure, I'm waiting.
feline Posted - Aug 26 2024 : 10:25:52 AM
Can you try creating a test project to see if you get the same problem there?

I am going to email you a simple test project I have set up to test this, just so we can test the same exclude rules and directory structure, so we know if this works at all for you.
KeyC0de Posted - Aug 26 2024 : 10:03:40 AM
I'm opening a solution in visual studio.
The solution has one project.
I have done the rest you said.
I tried placing this file in a .vscode folder in both the solution directory and the project directory and it didn't work. The files in excluded directories as well as their symbols are not getting filtered out.
feline Posted - Aug 26 2024 : 09:59:21 AM
Despite the file name, this file is picked up and respected by both Visual Studio and Visual Assist.

Are you working with a SLN file or are you opening a folder? I just want to make sure that you have the file in the correct location. The file content looks good.

Have you turned On the VA setting:

VA Options -> Performance -> Do not parse files excluded by .vscode\settings.json (requires restart)

and have you restarted Visual Studio since creating and saving the file?

If you look in VA's Open File dialog, are any of the files from the excluded directory still showing, or are they filtered out? First we need to know if the filter is having any effect on the files VA lists, before moving on to think about intellisense.
KeyC0de Posted - Aug 26 2024 : 09:04:44 AM
I have created folder .vscode in the vs solution directory.
I added a settings.json file in there.
I want to exclude one directory, so I added this content inside the file:

{
	"files.exclude":
	{
		"MyProject/MyFolder" : true
	}
}

But it doesn't work. I can still see intellisense from content inside the files of this excluded directory.
KeyC0de Posted - Aug 26 2024 : 08:53:20 AM
I'll try to test this.

quote:
Originally posted by feline
.vscode\settings.json (requires restart)



Where is the location of the file .vscode\settings.json?

For the record, my question is for Visual Studio 2022, not visual studio code.
feline Posted - Aug 26 2024 : 08:30:53 AM
For VA, you need to turn On the setting:

VA Options -> Performance -> Do not parse files excluded by .vscode\settings.json (requires restart)

and make sure this file is present, in the folder that holds your SLN file, or in the root directory you are opening if you are opening a folder tree. The test file I use here with this setting enabled is:

{
    "files.exclude": {
        "*/cpp_dll_cpp17": true,
        "cpp_dll_cpp20" : true,
        "**/bugs" : true,
        "**/code_formatting_tests/clangFormatBase" : true,
        "**/test_plain_text.txt" : true,
        "**/*.xaml" : true
    }
}

which tests excluding entire folders, and all of their content, also specific file extensions and file names.

The excluded directories are "cpp_dll_cpp17", "cpp_dll_cpp20", "bugs" and "code_formatting_tests/clangFormatBase"

Can you see what I am doing with this sample file?
foxmuldr Posted - Aug 26 2024 : 08:14:42 AM
I'm not sure you could exclude Intellisense parsing through VAX, but you could have them exclude it in their own internal parser.

Microsoft did recently introduce a content exclusion feature for Copilot, one which allows settings to exclude certain source code files:

https://devblogs.microsoft.com/visualstudio/copilot-content-exclusion-in-visual-studio/

"This feature allows your admins to configure Copilot to ignore certain files in a repository or organization, giving you enterprise control that ensures sensitive information is protected while seamlessly integrating trusted AI for efficient coding..."

--
Rick C. Hodgin

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000