简体   繁体   English

如何在emacs-jedi中滚动浏览自动完成选项(除箭头键外)

[英]How do I scroll through the autocomplete options in emacs-jedi (besides arrow keys)

Up and down arrow keys work but I was wondering if there was another option on the home row. 向上和向下箭头键有效,但我想知道主行上是否还有其他选项。 If not, how do I set it to something else? 如果没有,如何将其设置为其他? (emacs noob) (emacs新手)

emacs-jedi uses auto-complete under the hood emacs-jedi在后台使用自动完成功能

These are also supported (besides the default arrows): 还支持这些功能(默认箭头除外):

Mn Next item Mn下一项

Mp Previous item Mp上一项

If you wanted to change them you could do something like this: 如果要更改它们,可以执行以下操作:

(define-key ac-completing-map (kbd "C-c j") 'ac-next)
(define-key ac-completing-map (kbd "C-c k") 'ac-previous)  

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM