emacs: 라이센스(license) 자동 추가 모듈
Source code를 작성할 때, 보통 헤더에 주석으로 라이센스(예: GPL, LGPL, BSD 등)를 붙이기 마련입니다. 일일히 집어넣기도 귀찮고 해서, 자동으로 라이센스를 넣어주는 emacs script를 만들었습니다.
위 파일을 받은 다음, $HOME/.emacs.d/에 풀어 넣습니다:
$ mkdir ~/.emacs.d $ tar -C ~/.emacs.d/ -xzf xlicense.tar.gz
그리고 나서 .emacs에 아래 코드를 추가합니다:
(load-library "~/.emacs.d/xlicense.el")
아래 코드도 추가해 주는게 좋습니다 (optional)
(define-abbrev-table 'global-abbrev-table '( ("$$license" "" license-skeleton) )) (add-hook 'c-mode-hook (function (lambda nil (abbrev-mode 1)))) (add-hook 'c++-mode-hook (function (lambda nil (abbrev-mode 1))))
그리고 나서, 소스 코드를 편집할 때, M-x insert-license <RET>를 입력하면, 원하는 라이센스를 물어봅니다. (TAB 키를 누르면, 지원하는 라이센스 종류를 보여줍니다.) 그리고 이 소스를 나타내는 한 줄 요약을 넣으면, 현재 포인트가 위치한 곳에 라이센스를 주석 형태로 넣어줍니다. 예를 들면 다음과 같습니다:
M-x insert-license <RET> Choose a license type: bsd <RET> Summary (short description): malloc utility <RET>
그러면 다음과 같은 코드가 현재 버퍼에 들어옵니다:
/* * malloc utility * Copyright (C) 2010 Seong-Kook Shin <cinsk@somewhere.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. ... */
단순히 텍스트 내용을 집어넣기만 하는 것은 아니고, 현재 년도, 사용자 이름, 사용자 e-mail 등을 자동으로 넣어주며, 적당한 폭으로 만들어서 주석 처리를 해 줍니다. 즉 C 버퍼인 경우 "/* ... */" 안에, C++ 버퍼인 경우 "//..." 안에, lisp 버퍼인 경우 ";; ..." 형태로 넣어줍니다.
또, abbrev-mode가 활성화된 상태라면, 단순히 현재 버퍼에 "$$license"를 입력하는 것으로, 라이센스를 추가할 수 있습니다.
Emacs Wiki에도 등록했으니 필요하면 읽어 보시기 바랍니다: ExtraLicense
댓글
감사합니다.^^
감사합니다.^^
감사합니다.
감사합니다.
오늘은 하늘에 별이 참 많다.
댓글 달기