태그>editor(총 74개의 글)
'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] Setting case sensitive search
-
- [Emacs] Disable auto line truncation

-
Vital Memes by daftcoder|2011/12/28 14:54
In ~/.emacs (setq-default truncate-lines t)
- [Emacs] Disable auto line truncation
-
- [Emacs] Setting compile command

-
Vital Memes by daftcoder|2011/12/27 19:08
In ~/.emacs (setq compile-command "gmake -f Makefile.gnu all")
- [Emacs] Setting compile command
-
- [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] Setting frame size and position
-
- [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] find-file-in-tags
-
- [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] Symbol Completion
-
- [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] eassist 사용하기
-
- [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] Shell에서 Color Ansi Code가 깨지는 경우
-
- [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] Good Emacs Links
-
- [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] 창이동 키 바인딩
-
- [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] cedet semantic intellisense key binding
-
- [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 사용법
-
- [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] cscope
-
- [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] Indentation
-
- [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] ECB, CEDET




