Skip to content

Instantly share code, notes, and snippets.

@lisposter
Created August 6, 2013 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lisposter/6161859 to your computer and use it in GitHub Desktop.
Save lisposter/6161859 to your computer and use it in GitHub Desktop.
hexo 新建文章自动调用sublime打开文件 放置于 script 目录中即可
var spawn = require('child_process').spawn;
hexo.on('new', function(target){
spawn('sublime', [target]);
});
@lluvio
Copy link

lluvio commented May 28, 2014

windows 下呢。。。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment