[완료]emacs lisp에서 문자열 입력 받기 등등..

novicero의 이미지

함수 하나를 보쌈을 싸서 시작과 끝에다가

#if 1
함수A
#endif

이런 식으로 하려고 합니다.

(defun ifStart ()
   (interactive)
  (insert  (format-time-string "#if 1 /* added by novicero: %Y%m%d %H:%M:%S  */\n")))
 
(global-set-key [f5] 'ifStart)

대강 이렇습니다.
원래 목표는 M-x ifStart를 실행하면 입력 받는 부분이 나와서
comment를 입력하면

#if 1 /* added by novicero: %Y%m%d %H:%M:%S - comment */ 

이런 식으로 되게 하려고 했는데 입력 받는 부분 처리를 잘 못 하겠네요..
오후 내내 일 안 하고 이거 찾다가 ㅡㅡ;; 결국 포기하고 이렇게 여쭙습니다.

monpetit의 이미지

다음은 문자열을 입력받는 간단한 예제입니다. 참고하세요.

(defun hello ()
  (interactive)
  (let ((name (read-string "Enter your name: " nil)))
    (princ (concat "Hello " name "."))))

-----
익명으로 쓴 글은 볼 수 없습니다.
cinsk의 이미지

혹시 이런 것을 원하시는 것인가요?

(defun ifStart (m) 
  (interactive "MComment: ")
  (let ((s (format-time-string
            "#if 1 /* added by novicero: %Y%m%d %H:%M:%S")))
    (save-excursion
      (if (not (= (length m) 0))
          (setq s (concat s (format " - %s" m))))
      (setq s (concat s " */\n"))
      (insert s))))

--
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://www.cinsk.org/cfaqs/

cinsk의 이미지

현재 줄에 다른 글자가 있거나, 커서 위치가 어떤 문자열의 중간 부분에 위치해 있을 경우를 대비한다면 `end-of-line'등의 함수를 써서 좀 더 알차게 만드는 게 나아 보입니다.

또, 어차피 C/C++ 파일을 편집할 때에만 쓰는 것이므로 `global-set-key'를 써서 전체 모드에 적용시키기 보다는 `define-key'를 써서 해당 모드에서 사용하는 mode map에 binding하는 것이 더 나아 보입니다. 예를 들면 다음과 같습니다:

(require 'cc-mode)
(define-key c-mode-base-map [f5] 'ifStart)

Emacs Lisp에 관심이 많다면 info(1)가 제공하는 "An Introduction to Programming in Emacs Lisp"과 "Emacs Lisp Rereference Manual"를 읽어보기 바랍니다. Emacs 안에서 읽으려면 M-x info 명령을 쓰면 됩니다. (info 안에서는 각각 "Emacs Lisp Intro", "Elisp"으로 이름지어져 있습니다)

--
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://www.cinsk.org/cfaqs/

novicero의 이미지

..

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <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].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <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].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <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].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <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].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.