모르겠습니다..
알려주세요! ^^
.emacs 파일에 아래 코드를 넣고 해 보세요
(defun match-paren () "% command of vi" (interactive) (let ((char (char-after (point)))) (cond ((memq char '(?\( ?\{ ?\[)) (forward-sexp 1) (backward-char 1)) ((memq char '(?\) ?\} ?\])) (forward-char 1) (backward-sexp 1)) (t (call-interactively 'self-insert-command))))) ;; 원하는 키 값을 아래에 바인딩 시키면 되겠네요 (global-set-key (kbd "\C-]") 'match-paren)
--------------------------------------------- git init git add . git commit -am "project init" ---------------------------------------------
감사합니다 madman93님 ^^
덕분에 C-q로 설정했습니다~
잘쓰겠습니다!
텍스트 포맷에 대한 자세한 정보
<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]
키 조합이 따로 존재 하지 않는 걸로 알고 있습니다.
.emacs 파일에 아래 코드를 넣고 해 보세요
---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------
아 따로 있는게 아니었군요
감사합니다 madman93님 ^^
덕분에 C-q로 설정했습니다~
잘쓰겠습니다!
댓글 달기