Gedit配置

gedit自动编译:

#!/bin/sh
name=$GEDIT_CURRENT_DOCUMENT_NAME
dir=$GEDIT_CURRENT_DOCUMENT_DIR
pre=${name%.*}
g++ $dir/$name -o $pre -std=c++11 -w
if test $? -eq 0; then
   gnome-terminal -x bash -c "time $dir/$pre;echo;read;"
fi  

for循环:(for)
for(register int $1; $2; $3) $4

函数:(F)
${1:name}($2)  

#include:(inc)
#include <${1:file}>
$0

main函数:(main)
int main() {
	$0
	return 0;
}

结构体:(struct)
struct ${1:name} {
	$0
};

if语句:(if) 
if($1) 

while循环:(while) 
while($1) {
	$0
}

读入scanf:(scanf) 
scanf("$1", $2)

输出printf:(printf)
printf("$1", $2)
上一篇:Ubuntu 打开txt文件乱码问题


下一篇:gedit /etc/profile