Skip to content

Instantly share code, notes, and snippets.

@chuckha
Created April 3, 2012 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chuckha/2294857 to your computer and use it in GitHub Desktop.
Save chuckha/2294857 to your computer and use it in GitHub Desktop.
License Generator for SBO projects
function! LicenseGenerator()
let date = strftime("%c")
call search("# encoding: utf-8")
return "# Created by Chuck Ha on " . date . "\n# Copyright (c) 2012 Safari Books Online, LLC. All rights reserved.\n\n"
endfun
nmap <silent> ,li "=LicenseGenerator()<CR>p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment