"Emacs"의 두 판 사이의 차이
ph
								
												
				| 24번째 줄: | 24번째 줄: | ||
* [http://www.cs.utah.edu/dept/old/texinfo/emacs19/emacs_27.html compiling and testing programs]  | * [http://www.cs.utah.edu/dept/old/texinfo/emacs19/emacs_27.html compiling and testing programs]  | ||
* [http://web.psung.name/emacstips/essential.html Ten Essential Emacs Tips] very very valuable!!!  | * [http://web.psung.name/emacstips/essential.html Ten Essential Emacs Tips] very very valuable!!!  | ||
| + | * C-x C-q toggle-read-only [http://www.gnu.org/s/emacs/manual/html_node/elisp/Read-Only-Buffers.html ref manual]  | ||
2011년 6월 3일 (금) 12:13 판
- my Dot emacs
 - How to Define Keyboard Shortcuts in Emacs
 - emacs command list
 - emacs wiki - ctrl+tab buffer cycling
 - GNU emacs manual
 - tab설정 : 
(setq-default tab-width 4)- http://www.emacswiki.org/emacs/EmacsChannelFaq 이 설정찾은 링크. 굉장히 좋은듯. read-it-later
 
 - bookmark
 - M-x shell 보다 M-x term이 훨씬 낫다. eshell이 가장 보편적.
 - M-/ auto completion
 - encoding 변경: C-x C-m f 인코딩명 출처
 - using Emacs for programming 간단한 디버거 사용법 포함
 - auto indentation
 - changing default C indentation style C-x . / C-M-q / C-M-\ / c-set-style / c-default-style
- indenting C (emacs wiki)
 
 - key combinations cheat sheet
 - query-replace about recursive editing
 - C-x z runs the command repeat
 
Repeat most recently executed command. With prefix arg, apply new prefix arg to that command; otherwise, use the prefix arg that was used before (if any). This command is like the `.' command in the vi editor.
If this command is invoked by a multi-character key sequence, it can then be repeated by repeating the final character of that sequence. This behavior can be modified by the global variable `repeat-on-final-keystroke'.
- C-x `
 
Visit the locus of the next error message or match. (from http://www.gnu.org/software/libtool/manual/emacs/Compilation-Mode.html)
- compiling and testing programs
 - Ten Essential Emacs Tips very very valuable!!!
 - C-x C-q toggle-read-only ref manual