패러럴즈는 맥에서 사용하는 아주 좋은 가상화 프로그램입니다.
코드 퓨전과 패러럴즈를 비교하면 아무래도 패러럴즈가 더 빠르게 동작하기 때문에 점수를 더 줄 수 있습니다.
코드 퓨전의 극악에 가까운.. 성능이 문제가 되죠.. 아무래도 맥에서의 시스템 프로그래밍은 패러럴즈가
더 좋은듯 합니다.
그런데 좋은 프로그램이라도 사용하는데 문제가 하나 있습니다.
바로 Emacs를 사용할 때에, SET-MARK-COMMAND가 안먹힌 다는 겁니다.
이유는 Control-SPACE가 맥에서 spotlight 단축키로 할당되어 있기 때문에 지정을 안한것 같습니다.
코드 퓨전에서는 이 키가 먹히는 것으로 보아서 패러럴즈를 만드는 사람들이 Emacs를 사용하지 않는다는
추측이 가능하게 됩니다.
아래 구문을 .emacs에 추가하시면 control + , (콤마) 키가 SET-MARK-COMMNAD를 대치하게 됩니다.
꿩대신 닭이라고 이렇게 사용해야 하곘지요..
패러럴즈 프리퍼런스에 보면, 키 매핑을 할 수 있도록 되어 있는데 SPACE키만은 단축키로 사용하지 않도록 지정되어 있습니다. 아무래도 패러럴즈는 SPACE 키의 용법에 대해서는 조금 둔감한것 같습니다.
(global-set-key (kbd "C-,") 'set-mark-command) ;
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(inhibit-startup-screen t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:stipple nil :background "black" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :family "outline-courier new"))))
'(cursor ((t (:background "blue")))))
'MAC Life' 카테고리의 다른 글
수치스러운 인터페이스의 명예의 전당 (0) | 2009.03.05 |
---|---|
Culture Code의 개발 이미지 (0) | 2009.01.28 |
맥에서 히든파일 보기 (0) | 2009.01.23 |
멋진 Key Note 09 (0) | 2009.01.08 |
매킨토시 환경에서 개발한다는 것은 (0) | 2009.01.03 |