Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 28 additions & 28 deletions menus/atom-sync.cson
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
# See https://atom.io/docs/latest/hacking-atom-package-word-count#menus for more details
'context-menu':
'.tree-view .header.list-item': [
'label': 'Sync'
'submenu': [
{
'label': 'Edit Sync Config'
'command': 'atom-sync:configure'
}
{
'label': 'Sync Remote -> Local'
'command': 'atom-sync:download-directory'
}
{
'label': 'Sync Local -> Remote'
'command': 'atom-sync:upload-directory'
}
'.tool-panel.tree-view .header.list-item': [
'label': 'Sync'
'submenu': [
{
'label': 'Edit Sync Config'
'command': 'atom-sync:configure'
}
{
'label': 'Sync Remote -> Local'
'command': 'atom-sync:download-directory'
}
{
'label': 'Sync Local -> Remote'
'command': 'atom-sync:upload-directory'
}
]
]
]

'.tree-view .file.list-item': [
'label': 'Sync'
'submenu': [
{
'label': 'Download File'
'command': 'atom-sync:download-file'
}
{
'label': 'Upload File'
'command': 'atom-sync:upload-file'
}
'atom-text-editor, .tool-panel.tree-view .file': [
'label': 'Sync'
'submenu': [
{
'label': 'Download File'
'command': 'atom-sync:download-file'
}
{
'label': 'Upload File'
'command': 'atom-sync:upload-file'
}
]
]
]