vscode journal 2025
satya - 4/6/2025, 1:55:05 PM
How do I wrap text in the default text editor in vscode?
How do I wrap text in the default text editor in vscode?
Search for: How do I wrap text in the default text editor in vscode?
satya - 4/6/2025, 2:02:21 PM
Do this
- It is in the setting "Text Editor/Editor: word wrap"
- ctrl-shift-p
- preferences: open work space settings
- Among the tabs go to the "user" tab (for you want this globally)
- Type in the search: Editor: word wrap"
- It should locate the "Text Editor, Editor: word wrap setting"
- Turn it on, as by default it is off.
satya - 4/6/2025, 3:06:38 PM
where should I keep the vscode snippets files for a root folder in a multi-root vscode workspace?
where should I keep the vscode snippets files for a root folder in a multi-root vscode workspace?
satya - 4/6/2025, 3:16:43 PM
here is the summary
- They can be at a user scope level and applies to all vscode instances
- These will be in a directory like the following
- C:\Users\satya\AppData\Roaming\Code\User\snippets\global-snippets.code-snippets
- You can have as many files as you want, as long as they are named as such
- ...........
- Or they can be at a project level
- 2 options
- option 1: /root/.vscode/a.code-snippets
- Option 2: /root/.vscode/snippets/a.code-snippets