zoukankan      html  css  js  c++  java
  • vscode自动生成头文件

    Ctrl Shift P
    输入:snipp,选配置用户代码片段,新建全局代码片段文件,修改下列模板:

    {
    	// Place your 全局 snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and 
    	// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope 
    	// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is 
    	// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: 
    	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. 
    	// Placeholders with the same ids are connected.
    	// Example:
    	// "Print to console": {
    	// 	"scope": "javascript,typescript",
    	// 	"prefix": "log",
    	// 	"body": [
    	// 		"console.log('$1');",
    	// 		"$2"
    	// 	],
    	// 	"description": "Log output to console"
    	// }
    	"C header": {
    		"scope":"c, cpp",
    		"prefix": "header",
    		"body": [
    			"#include <sys/types.h>",
    			"#include <sys/stat.h>",
    			"#include <unistd.h>",
    			"#include <stdlib.h>",
    			"#include <stdio.h>",
    			"#include <fcntl.h>",
    			"",
    			"int main() {",
    			"\t$0",
    			"\treturn 0;",
    			"}"
    		]
    	}
    }
    

    vim自动头文件去看vimrc

  • 相关阅读:
    非监督学习
    4.5_岭回归案例分析
    4.4_回归算法之岭回归
    4.3_回归性能评估与欠拟合|过拟合
    4.2_线性回归案例分析
    回归算法
    HDU 2105 The Center of Gravity (数学)
    HDU 2089 不要62 (数学)
    HDU 2036 改革春风吹满地 (数学)
    HDU 1840 Equations (数学)
  • 原文地址:https://www.cnblogs.com/rookiezjz/p/15815445.html
Copyright © 2011-2022 走看看