1.安装
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt-get update
sudo apt-get install ubuntu-make
2.umake
umake web visual-studio-code
若报错:
usage: umake web [-h] {firefox-dev,phantomjs} ... umake web: error: argument framework: invalid choice: 'visual-studio-code' (choose from 'firefox-dev', 'phantomjs')
这是因为visual-studio-code不在Web选项里,应该是在ide中,
故正确应该如下:
sudo umake ide visual-studio-code
网上查了很多,依稀记得,自己安装过程中遇到的是这种情况。先记录下了。
3.visual studio code 注释
单行注释
光标选中想要注释的某行代码,(1)ctrl+k(2)ctrl+c,取消是(1)ctrl+k(2)ctrl+u。
多行注释
光标选中想要注释的所有代码,(1)ctrl+k(2)ctrl+c,取消是(1)ctrl+k(2)ctrl+u。
或
光标选中想要注释的所有代码,ctrl+/,取消同理。