You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Greetings!
There are a lot of similar lines in the vscode-esp-idf-extension settings that confuse beginners and greatly annoy more experienced users (e.g., me)
Using the example of typescript, I propose a solution to the problem with different delimiters in the path, depending on the platform on which vscode-esp-idf-extension is running.
import*asosfrom'os';constplatform=os.platform();if((platform==="linux")||(platform==="darwin")){// linux or OS X// e.g.SLASH='/';}elseif(platform==="win32"){// Windows...// e.g.SLASH='\\';}
This will allow to show only the necessary elements in the vscode-esp-idf-extension settings.
The text was updated successfully, but these errors were encountered:
Greetings!
There are a lot of similar lines in the
vscode-esp-idf-extension
settings that confuse beginners and greatly annoy more experienced users (e.g., me)Using the example of
typescript
, I propose a solution to the problem with different delimiters in the path, depending on the platform on whichvscode-esp-idf-extension
is running.This will allow to show only the necessary elements in the
vscode-esp-idf-extension
settings.The text was updated successfully, but these errors were encountered: