company-mode의 보완 후보의 이동을 Ctrl-n과 Ctrl-p로 하고 싶다
M-n/M-p로 이동하는 것이 정답인 것 같습니다만, 그런 키 바인드가 디폴트라고 하는 것은 풀 수 없네요.
이것을 Ctrl-n/Ctrl-p로 이동시키는 것은 간단하고, 다음과 같이
.emacs
+;;; Remap company-select-next and company-select-previous to C-n and C-p
+;;; via: https://emacs.stackexchange.com/questions/2988/how-to-remap-companys-select-next-and-select-previous-keys
+(with-eval-after-load 'company
+ (define-key company-active-map (kbd "M-n") nil)
+ (define-key company-active-map (kbd "M-p") nil)
+ (define-key company-active-map (kbd "C-n") #'company-select-next)
+ (define-key company-active-map (kbd "C-p") #'company-select-previous))
전 자료
Reference
이 문제에 관하여(company-mode의 보완 후보의 이동을 Ctrl-n과 Ctrl-p로 하고 싶다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hnw/items/5eaa8435dc4d598c4db6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)