줌으로 가기

  1. 1임영웅
  2. 2황보승희
  3. 3이강인
  4. 4김민재
  5. 5보아
  6. 6박수련
  7. 7에코프로
  8. 8사냥개들
  9. 9bj아영
  10. 10진예솔
이슈검색어 오후 11:03
  1. 1임영웅
  2. 2황보승희
  3. 3이강인
  4. 4김민재
  5. 5보아
  6. 6박수련
  7. 7에코프로
  8. 8사냥개들
  9. 9bj아영
  10. 10진예솔
내이글루 마이리더 포토로그 로그인 줌서비스
  • 뉴스
  • TV
  • 허브
  • 쇼핑
  • 가상화폐
  • 자동차
  • 이슈트렌드

egloos

  • 밸리
  • 테마목록
  • 포스트검색
    • 포스트검색
    • 이글루검색
통합검색 입력

  • 전체인기글
  • 영화
  • 방송&연예
  • 게임
  • 포켓몬GO
  • 애니메이션
  • 만화
  • 도서
  • 음악
  • 공연&전시
  • 음식
  • 애완반려동물
  • 여행
  • 사진
  • 패션&뷰티
  • 연애
  • 개그
  • 일상
  • 육아
  • IT
  • 얼리어답터
  • 지름
  • 자동차
  • 스포츠
  • 뉴스비평
  • 인문사회
  • 역사
  • 세계
  • 과학
  • 토이
  • 창작
  • 벼룩시장
  • 지식Q&A
  • 이글루스
  • 소통밸리

'밸리리더'를 이용하시면, 창이동 없이 빠르고 가볍게 보실 수 있습니다. 밸리리더열기


태그>editor(총 74개의 글)

'editor' 관련 최근글이글루스 'editor' 태그 최근글 이 태그에 글쓰기

  • [Emacs] Setting case sensitive search
    Vital Memes  by daftcoder|2011/12/28 15:39

    (setq case-fold-search nil) ; make searches case sensitive(setq case-fold-search t) ; make searches case insensitive

    emacs, editor

  • [Emacs] Disable auto line truncation
    Vital Memes  by daftcoder|2011/12/28 14:54

    In ~/.emacs (setq-default truncate-lines t)

    emacs, editor

  • [Emacs] Setting compile command
    Vital Memes  by daftcoder|2011/12/27 19:08

    In ~/.emacs (setq compile-command "gmake -f Makefile.gnu all")

    emacs, editor

  • [Emacs] Setting frame size and position
    Vital Memes  by daftcoder|2011/12/27 15:39

    In ~/.emacs, (set-frame-width (seleted-frame) 200)(set-frame-height (seleted-frame) 55)(set-frame-position (seleted-frame) 160 40) In command line,$ emacs -g 200x55

    emacs, editor

  • [Emacs] find-file-in-tags
    Vital Memes  by daftcoder|2011/12/21 14:53

    TAGS 파일을 이용하여 파일 검색을 빠르게 수행할 수 있는 명령이다. C-,에 매핑하여 사용하면 편리하다. 을 적당한 위치(~/.emacs.d/)에 복사한다. in ~/.emacs(load-file "~/.emacs.d/find-file-in-tags.el")(global-set-key (read..

    emacs, editor

  • [Emacs] Symbol Completion
    Vital Memes  by daftcoder|2011/12/19 14:41

    dabbrev-expand, hippie-expand : 현재 열려있는 버퍼의 심볼을 이용하여 자동완성, 현재 버퍼 검색을 가장 먼저 수행.senator-complete-symbolcomplete-symbol : TAGS(etags)를 visit-tags-table로 등록하여 자동완성 검색 수행ebrowse-tags-c..

    emacs, editor

  • [Emacs] eassist 사용하기
    Vital Memes  by daftcoder|2011/12/19 11:07

    CEDET를 설치하면 eassist(http://www.emacswiki.org/emacs/eassist.el)가 설치된다. M-x eassist-switch-h-cpp : source/header 전환M-x eassist-list-methods : 현재 소스의 함수 목록 - Key MappingIn ~/.emacs(defun my-c-mode-co..

    emacs, editor

  • [Emacs] Shell에서 Color Ansi Code가 깨지는 경우
    Vital Memes  by daftcoder|2011/12/15 23:47

    in ~/.emacs (add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)

    emacs, editor

  • [Emacs] Good Emacs Links
    Vital Memes  by daftcoder|2011/12/13 14:53

    #toc2http://www.emacswiki.org/emacs/GrepModehttp://www.emacswiki.org/emacs/EAssist

    emacs, editor

  • [Emacs] 창이동 키 바인딩
    Vital Memes  by daftcoder|2011/12/13 13:30

    - C->와 C-<으로 이동 in ~/.emacs (defun other-window-reverse () (interactive) (other-window -1))(global-set-key (kbd "C->") 'other-window)(global-set-key (kbd "C-<") 'other-wi..

    emacs, editor

  • [Emacs] cedet semantic intellisense key binding
    Vital Memes  by daftcoder|2011/12/12 00:15

    - Intellisense 종류semantic-ia-complete-symbol-menusemantic-ia-complete-symbolsemantic-ia-complete-tipsenator-completion-menu-popupsemantic-complete-self-insertsemantic-complete-analyze-inlinesemantic-analy..

    emacs, editor

  • [Emacs] etags 사용법
    Vital Memes  by daftcoder|2011/12/11 21:32

    - TAGS 만들기 $ find -H . ( -name "*.[csSh]" -o -name "*.cpp" ) | xargs etags -a -o TAGS - 사용 M-x visit-tags-table : TAGS 파일 경로 지정M-. : 이동M-* : 돌아가기

    emacs, etags, editor

  • [Emacs] cscope
    Vital Memes  by daftcoder|2011/12/08 19:56

    - Build and Installation Download Size: cscope.sourceforge.net Prerequisites for build: libncurses5-dev, libncursesw5-dev, flex, bison $ ./configure $ make $ sudo make install contrib/xcscope/cscope-indexer를 /usr/local/b..

    emacs, editor

  • [Emacs] Indentation
    Vital Memes  by daftcoder|2011/12/08 19:14

    tab을 space로 대체하고, indent 크기를 4로 설정한다.in ~/.emacs(setq-default indent-tabs-mode nil) (setq default-tab-width 4) ; 보여지는 탭문자 크기 설정 (add-hook 'c-mode-hook (lamda() (setq c-basic-offset 4))) (add-..

    emacs, editor

  • [Emacs] ECB, CEDET
    Vital Memes  by daftcoder|2011/12/08 19:12

    - Installation ECB Download Site: ecb.sourceforge.net CEDET Download Site: cedet.sourceforge.net 각 설치 파일을 다운로드 받아 적당한 Directory에 복사한다. 예를들어, ~/.emacs.d/ 밑에 복사한다. ECB와 CEDET를 복사 및 빌드 후, ~/.emac..

    emacs, editor

1 2 3 4 5
이오공감 추천하기
제목:
이오공감운영정책보기
닫기


vi


대한독립만세 1949-2023 애플 주현영 warhammer40000 Thoughtography 매튜매커너히 소녀전선 안녕 아웃드라이

zum이슈 검색어 6/15 오후 11:03

  1. 1 임영웅 상승
  2. 2 황보승희 하락
  3. 3 이강인 상승
  4. 4 김민재 하락
  5. 5 보아 하락
  6. 6 박수련 상승
  7. 7 에코프로 하락
  8. 8 사냥개들 동일
  9. 9 bj아영 동일
  10. 10 진예솔 동일
이글루스 안드로이드 앱 출시
  • 이용약관
  • 개인정보처리방침
  • 청소년보호정책
  • 이메일 수집거부
  • 고객센터

Copyright ⓒ ZUM internet. All rights reserved.