exp-dist-audiolog/system/atom/iso8601-timestamp-mod/menus/iso8601-timestamp.cson
2021-10-05 21:39:54 +09:00

27 lines
571 B
Text

# See https://atom.io/docs/latest/hacking-atom-package-word-count#menus for more details
'context-menu':
'atom-text-editor': [
{
'label': 'Insert ISO 8601 local time'
'command': 'iso8601-timestamp:local'
}
]
'menu': [
{
'label': 'Packages'
'submenu': [
'label': 'ISO 8601 timestamp'
'submenu': [
{
'label': 'Insert ISO time'
'command': 'iso8601-timestamp:iso'
},
{
'label': 'Insert local time'
'command': 'iso8601-timestamp:local'
}
]
]
}
]