如何设置键绑定以移动(重新排列)Atom 中的选项卡?
How to set keybinding to move (rearrange) tabs in Atom?
我正在尝试设置键绑定以物理移动我当前的选项卡,将其移动到其他选项卡的右侧或左侧(而不是单击并拖动以重新排列它们)。
我知道用户定义的键绑定已添加到 ~/.atom/keymap.cson
,我只是无法确定命令,因为我在默认键绑定中看不到它。
你可以看看Tab Move Key包。很简单,你可以使用 alt page up 和 alt + page down 来移动标签。
我发现 Atom 有一个本机键绑定设置为:
ctrl + shift + ←: pane:move-item-left
ctrl + shift + →: pane:move-item-left
本机绑定未显示在 Settings > Keybindings
中。他们在这里:
'atom-workspace atom-text-editor:not([mini])':
'ctrl-alt-]': 'window:move-active-item-to-pane-on-right'
'ctrl-alt-[': 'window:move-active-item-to-pane-on-left'
command + [ = 将方块向左移动 1 个制表符
command + ] = 将块向右移动 1 个选项卡
我正在尝试设置键绑定以物理移动我当前的选项卡,将其移动到其他选项卡的右侧或左侧(而不是单击并拖动以重新排列它们)。
我知道用户定义的键绑定已添加到 ~/.atom/keymap.cson
,我只是无法确定命令,因为我在默认键绑定中看不到它。
你可以看看Tab Move Key包。很简单,你可以使用 alt page up 和 alt + page down 来移动标签。
我发现 Atom 有一个本机键绑定设置为:
ctrl + shift + ←:
pane:move-item-left
ctrl + shift + →:
pane:move-item-left
本机绑定未显示在 Settings > Keybindings
中。他们在这里:
'atom-workspace atom-text-editor:not([mini])':
'ctrl-alt-]': 'window:move-active-item-to-pane-on-right'
'ctrl-alt-[': 'window:move-active-item-to-pane-on-left'
command + [ = 将方块向左移动 1 个制表符
command + ] = 将块向右移动 1 个选项卡