Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t9md/atom-focus-pane-or-panel
change focus or pane or panel seamlessly
https://github.com/t9md/atom-focus-pane-or-panel
atom
Last synced: 8 days ago
JSON representation
change focus or pane or panel seamlessly
- Host: GitHub
- URL: https://github.com/t9md/atom-focus-pane-or-panel
- Owner: t9md
- License: mit
- Created: 2016-08-02T05:21:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-12T16:21:34.000Z (almost 6 years ago)
- Last Synced: 2024-10-29T18:24:56.708Z (about 2 months ago)
- Topics: atom
- Language: CoffeeScript
- Homepage: https://atom.io/packages/focus-pane-or-panel
- Size: 10.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# NO LONGER MAINTAINED: this not is added at 2019.03.13.
# focus-pane-or-panel
Change focus of pane or panel seamlessly.
# keymaps example
No keymap by default.
#### very basic
```coffeescript
'body':
'cmd-k cmd-up': 'focus-pane-or-panel:focus-above'
'cmd-k cmd-down': 'focus-pane-or-panel:focus-below'
'cmd-k cmd-left': 'focus-pane-or-panel:focus-on-left'
'cmd-k cmd-right': 'focus-pane-or-panel:focus-on-right'
```#### mine(I'm vim-mode-plus user).
want to change focus by ctrl-hjkl
```coffeescript
'atom-text-editor.vim-mode-plus.normal-mode':
'ctrl-j': 'focus-pane-or-panel:focus-below'
'ctrl-k': 'focus-pane-or-panel:focus-above'
'ctrl-h': 'focus-pane-or-panel:focus-on-left'
'ctrl-l': 'focus-pane-or-panel:focus-on-right''.tree-view':
'ctrl-h': 'focus-pane-or-panel:focus-on-left'
'ctrl-l': 'focus-pane-or-panel:focus-on-right'# for cmd-f panel
'.platform-darwin .find-and-replace atom-text-editor':
'ctrl-j': 'focus-pane-or-panel:focus-below'
'ctrl-k': 'focus-pane-or-panel:focus-above'# for cmd-shift-f panel
'.platform-darwin .project-find atom-text-editor':
'ctrl-j': 'focus-pane-or-panel:focus-below'
'ctrl-k': 'focus-pane-or-panel:focus-above'
```