Buffer List
Buffer list (buffer-menu) like Emacs or xyzzy, which can save/close documents.
Features
- Show list of opening documents
- Save and/or close marked documents
Configuration
Add your keymap.cson like this:
'atom-workspace':
'ctrl-x ctrl-b': 'buffer-list:show'
Usage
- Up/down to move cursor
- Enter/O to open the file
- S key to mark as save it
- D key to mark as close (delete) it
- U key to unmark
- X key to execute marked operations
Default keybindings
'.buffer-list':
'j': 'core:move-down'
'k': 'core:move-up'
'd': 'buffer-list:mark-as-delete'
's': 'buffer-list:mark-as-save'
'u': 'buffer-list:unmark'
'x': 'buffer-list:execute'
'o': 'buffer-list:open-selected'
'enter': 'buffer-list:open-selected'
'ctrl-v': 'core:page-down'
':not(.platform-darwin) .buffer-list':
'alt-v': 'core:page-up'
'.platform-darwin .buffer-list':
'cmd-v': 'core:page-up'