snippets for c code

sheng8sheng8發表於2020-11-30
{
	// 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
	"Cireat a C file ":{
		"prefix": "fileC",    //在新建立的頁面中輸入C++就會有智慧提示,Tab就自動生成好了
		"body": [
			"/*"
			" * 六瓜程式設計 2010-2020   @date: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE} ${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}"	
			" * author : XiaoShengYang" 
			"*/"
			"", //空行
			"#include <stdbool.h>"
			"", //空行
			"$0",    //最終游標會在這裡等待輸入
		  ],
		  "description": "A C file template."   //使用者輸入後智慧提示的內容(你可以用中文寫“生成C++模板”)
	  }

	// 建立H	  
	"Cireat a H file ":{
		"prefix": "fileH",    //在新建立的頁面中輸入C++就會有智慧提示,Tab就自動生成好了
		"body": [
			"/*******************************************************************************"
			"* company    : 六瓜程式設計 2010-2020"
			"* description: $1"
			"* date: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE} ${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}",
			"* author : XiaoShengYang" 
			"*******************************************************************************/"
			"", //空行
			"#ifndef __${TM_FILENAME/(.*)/${1:/upcase}/}"
			"#define __${TM_FILENAME/(.*)/${1:/upcase}/}"			
			"#include <stdbool.h>"
			"", //空行
			"$0",    //最終游標會在這裡等待輸入
			"#endif",		
		  ],
		  "description": "A H file template."   //使用者輸入後智慧提示的內容(你可以用中文寫“生成C++模板”)
	  }

	// 建立fun
	"Cireat a function ":{
		"prefix": "function",    //在新建立的頁面中輸入C++就會有智慧提示,Tab就自動生成好了
		"body": [
			"static$4 void$3 $1( void$2 )",
			"{",
			"\t$0",
			"}",		
		],
		"description": "A function template."   //使用者輸入後智慧提示的內容(你可以用中文寫“生成C++模板”)
	  }

	// 建立註釋
	"Cireat a anote ":{
		"prefix": "anote",    //在新建立的頁面中輸入C++就會有智慧提示,Tab就自動生成好了
		"body": [
			"",
			"\t/* $1 */",
			"\t$0",	
		],
		"description": "A function template."   //使用者輸入後智慧提示的內容(你可以用中文寫“生成C++模板”)
	  }

	// 建立結構體
	"Cireat a typedef struct ":{
		"prefix": "typedef struct",    //在新建立的頁面中輸入C++就會有智慧提示,Tab就自動生成好了
		"body": [
		"typedef struct _$1_t",
		"{",
		"\tu8 x;",
		"\tu8 y$2;",	
		"}$1_TypeDef;",
		"$0",	
		],
		"description": "A typedef struct template."   //使用者輸入後智慧提示的內容(你可以用中文寫“生成C++模板”)
	  }
	// 建立列舉
	"Cireat a typedef enum ":{
		"prefix": "typedef enum",    //在新建立的頁面中輸入C++就會有智慧提示,Tab就自動生成好了
		"body": [
		"typedef enum _$1_t",
		"{",
		"\tRED = 0,",
		"\tBLACK$2,",	
		"}$1_TypeDef;",
		"$0",
		],
		"description": "A typedef struct template."   //使用者輸入後智慧提示的內容(你可以用中文寫“生成C++模板”)
	  } 
}

 

相關文章