03/01/23
I just discovered that I can use html Emmet abreviations
on Markdown
documents changing the extension settings. It saves me A LOT of time
(Good luck formatting the markdown
document tho 💀).
This is my settings.json
of VSC and works pretty neat:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"files.autoSave": "afterDelay",
"explorer.confirmDelete": false,
"editor.minimap.enabled": false,
"emmet.excludeLanguages": [],
"emmet.includeLanguages": { "markdown": "html" },
"emmet.triggerExpansionOnTab": true,
"[markdown]": {
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
}
}
}
12/02/2023
I'm pretty mad at the Eclipse IDE 😂. I spent a lot of time trying to see why an application
was not working correctly and eclipse was not giving any error logs. I tried everything to even
log the errors but it just didn't change anything. I got fed up and installed the intelliJ IDE
at least to see if I got any errors. After installing the IDE and importing the project,
it worked perfectly without changing anything 😭.
It is possible that I did something wrong, but without any information it is difficult to solve it.
For now I will continue working with intelliJ.