본문/내용
4.1 하니맥 실행
하니맥을 실행하려면 쉘에서 다음과 같이 입력하면 된다.
$ hanemacs (X 윈도우 상에서 실행하고자 할 때)
$ hanemacs -nw (한텀 안에서 실행하고자 할 때)
하니맥 스크린에서 다음 메시지의 한글 부분이 깨져 보이지 않으면 하니맥은 잘 설치된 것이다.
Hangul Emacs 2.1
If you can see `하니맥` in the above line, everything is okay.
Otherwise, you must refer to hanemacs_manual.txt
만약 `하니맥`이라는 한글 문자열이 \\000 같은 8진수로 출력된다면 다음과 같이 하니맥 명령어를 입력하면 된다.
M-x standard-display-european
그러면 한글이 보일 것이다.
그리고 .emacs나 /usr/local/share/emacs/site-lisp/site-start.el에 다음 코드를 삽입해서 사용하면 된다.
(cord
((and
(boundp `emacs-major-version)
(= emacs-major-version 19)
(= emacs-minor-version 30))
(standard-display-european t)
(set-input-mode (car (current-input-mode)) (nth 1 (current-input-mode)) 0)
))
하니맥을 X 윈도우 상에서 실행했을 때 하니맥 스크린 하단에는 `영/완/2`라는 문자열이 보일 것이다. `영`은 키보드가 현재 영문 입력 상태라는 것을 뜻하고 `완`은 현재 하니맥에서 지원하는 한글 코드가 한글
완성형 코드라는 것을 뜻한다. `2`는 한글 2벌식을 …