本文介绍了取消设置yasnippet的“Tab”绑定?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



有没有办法禁用绑定Yasnippet以启用其他的使用?

解决方案

这些将删除yasnippet的键绑定: ($)

 (define-key yas-minor-mode-map [(tab)] nil)
(define-key yas- minor-mode-map(kbdTAB)nil)

应该工作。或者您可以将选项卡绑定到另一个命令。


The keybinding of yasnippet often overwrites other useful keys.

Is there a way to disable binding of Yasnippet to enable other usage?

解决方案

These will remove yasnippet's key binding:

(define-key yas-minor-mode-map [(tab)] nil)
(define-key yas-minor-mode-map (kbd "TAB") nil)

Should work. Or you can bind tab to another command.

这篇关于取消设置yasnippet的“Tab”绑定?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 02:30