emacs에서 클립보드에 복사한 것을 찾을때는??

hwiorb의 이미지

안녕하세요.

별로 불편하게 생각하지 않았던 부분인데, vi를 쓰다가 Shift+3에 해당하는 것을 emacs에서 찾다보니
이게 찾을 수 가 없더군요.

그래서 혹시나, 예전부터 궁금해왔던 질문을 적어봅니다.
사용자가 복사한 문자열을 C-s를 통해 찾을 때, 마우스로 직접 미니버퍼를 클릭해서 포커스를 주었는데, 단축키를 사용하여 미니버퍼 쪽으로 포커스를 이동 하는 방법이 있나요?

oppor의 이미지

저도 이거 궁금하네요.

그런데 vi에서 shift+3 이 무슨 역할을 하나요??

hwiorb의 이미지

vi에서 shift+3이 아마 keyword 검색(이름으론)이지 않을까 싶습니다.
/로 찾으면 문자열 검색이 되는데, shift+3은 양 옆에 구분자(?)기호가 들어가서,
해당 페이지 내에서 함수나 변수명, define 등의 검색이 편하더군요.

nil.

oppor의 이미지

찾아보긴 했는데 쉽진 않네요.

미니버퍼로 포커스를 옮기는건 못찾았구요.

대신에 복사한 문자열을 바로 찾는 법은 있더군요.

문자열을 복사하고
C-s 해서 isearch 모드로 들어간뒤에
M-y 해주면 복사되었던 문자열이 minibuffer에 yanking 됩니다.

이것만 해도 꽤 유용할것 같아요.^^

madman93의 이미지

emacs 에서는 원하는 문자에서 C+s 다음에 C+w 를 하는 기능이 더 가까울 것 같군요!!

---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------

hwiorb의 이미지

(defun switch-to-minibuffer-window ()
"switch to minibuffer window (if active)"
(interactive)
(when (active-minibuffer-window)
(select-window (active-minibuffer-window))))
(global-set-key (kbd "") 'switch-to-minibuffer-window)

M-x 같이 포커스가 있는 상태에서 다른 창으로 넘어간 경우 다시 미니버퍼로 포커스를 주는 방법입니다
C-s 는 포커스가 없는건지 안되는 군요.
미니버퍼를 클릭했을 땐, 포커스가 생겨서 이동이 가능은 한데, 왜 이렇게 되어 있을까 의문입니다.

nil.

login321의 이미지

1. C-s
2. M-e
3. C-y

Isearch모드에서 `M-e'키는 `isearch-edit-string'에 바인딩되어 있어서 포커스가 미니버퍼로 옮겨집니다.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.