Before logging an issue, please update to the latest release of Visual Micro from the Downloads Page.

When Logging a Support Issue in the Forum, please ensure you have also:-

  • Enabled vMicro > Compiler > Show Build Properties
  • Re-Compile your program with these settings enabled
 
Save the new Output to a Text File and....
  • Click the Reply button and attach as .txt file OR
  • Click here to Email us with the file attached, and a link to your post
Support requests without the output above may be impossible to answer, so please help us to help you
 
Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Syntax Highlighting Problems with directory case sensitivity (Read 565 times)
goj immypi
Junior Member
**
Offline


Posts: 14
Joined: Jan 20th, 2017
Syntax Highlighting Problems with directory case sensitivity
Jun 4th, 2020 at 5:53pm
Print Post  
I had a horrible time trying to figure out why I could not get Visual Micro to do proper syntax highlighting on a specific computer, when it was working fine elsewhere. Turns out it was self-inflicted.  Embarrassed

I have an entire blog post that discusses some of the tips and traps of Visual Studio. This particular issue with syntax highlighting was caused when I turned on file system case sensitivity to address a problem in WSL that I was encountering for files on the Windows filesystem. See this blog for more details on per-directory case sensitivity. 

to check for case sensitivity:

Code
Select All
fsutil.exe file queryCaseSensitiveInfo c:\workspace\ 



to disable case sensitivity

Code
Select All
fsutil.exe file setCaseSensitiveInfo  c:\workspace\ disable 



Note that I needed to turn off case sensitivity on the parent directory to get syntax highlighting to work properly in my project directory.

Hopefully this will help someone else and avoid the amount of time it took me to figure this out.

  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint