Atom编辑器:书签包:书签切换不使用默认键映射

时间:2016-07-11 08:14:35

标签: atom-editor

  • 我在Windows 7上使用Atom 1.8.0。
  • 键映射说,' ctrl-alt-f2'使用选择器' .platform-win32 atom-text-editor'。如果我按下组合按钮,则没有任何反应。
  • 我将书签切换操作映射到另一个键映射(' ctrl-shift-1')只是为了查看它是否有效,并且它有效。我的书签问题已经解决,但我想知道为什么默认组合不起作用。

我做错了什么?如何解决这个问题以找到根本原因?

1 个答案:

答案 0 :(得分:0)

keybinding-resolver是检测冲突键盘快捷键的好方法。如果存在冲突,您可以使用import theano from theano import tensor as T import numpy as np import scipy.integrate as integrate x = T.vector('x') h = T.vector('h') t = T.scalar('t') A = np.asarray([[0,1],[1,0]]) A = theano.shared(name='A', value=A) B = np.asarray([[-1,0],[0,-1]]) B = theano.shared(name='B', value=B) xn = A.dot(x) hn = B.dot(h) res = (t + xn.dot(hn))**(-2) g = theano.function([t,x,h],res) # this computes the integrand f = theano.function([x,h], integrate.quad(lambda t: g(t,x,h), 10, np.inf)) 来禁用现有的快捷方式。

如果问题仍然存在,请确保全局不使用相同的快捷方式。有GitHub issue报告英特尔图形控制面板全局使用相同的快捷方式。