Recovering deleted files Link to heading

If you deleted something through vscode, you can find at

<mounted_disk>/.Trash-1000/files/<deleted_file_name>

I found the solution at github issue

Spelling checks Link to heading

I use spell-right vscode extension for spelling suggestions.

sudo apt-get install hunspell-en-us
ln -s /usr/share/hunspell/* ~/.config/Code/Dictionaries

then Alt-Shift-p to choose spellRight: Select Dictionary and it works!.

One save command Link to heading

Install vscode extension “Run on Save”

in .vscode/settings.json, Added watcher to run make file

{
  "emeraldwalk.runonsave": {
    "commands": [
      {
        "match": "top.v",
        "cmd": "make"
      }
    ]
  }
}