emacs에서 어떤 함수를 만들었는데, 이걸 키바인딩을 하려면 어떻게 해야 하나요? .emacs 안에 어떤 함수를 만들었는데.. 이걸 C-; 바인딩 하려니 자꾸 Wrong argument type라고 하더라구요. 어떻게 해야 제가 만든 함수가 제대로 작동하나요?
키 바인딩을 하려면 command 형태로 만들어야 합니다. 뭐 대단한 것은 아니고, (defun ...) 다음에 (interactive ...) 호출이 있으면 됩니다. 예를 들면 다음과 같습니다:
(defun my-command () (interactive) ;;; 나머지 내 ) (global-key-set [(control x) ?p] 'my-command)
-- C FAQ: http://www.eskimo.com/~scs/C-faq/top.html Korean Ver: http://www.cinsk.org/cfaqs/
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html Korean Ver: http://cinsk.github.io/cfaqs/
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
키 바인딩을 하려면
키 바인딩을 하려면 command 형태로 만들어야 합니다. 뭐 대단한 것은 아니고, (defun ...) 다음에 (interactive ...) 호출이 있으면 됩니다. 예를 들면 다음과 같습니다:
--
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://www.cinsk.org/cfaqs/
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://cinsk.github.io/cfaqs/
댓글 달기