Merge pull request #3315 from dmnd/fix-checkout-head

Fix error when running `checkout-head-revision`
This commit is contained in:
Kevin Sawicki
2014-08-18 08:07:07 -06:00

View File

@@ -500,7 +500,7 @@ EditorComponent = React.createClass
'editor:fold-at-indent-level-9': -> editor.foldAllAtIndentLevel(8)
'editor:toggle-line-comments': -> editor.toggleLineCommentsInSelection()
'editor:log-cursor-scope': -> editor.logCursorScope()
'editor:checkout-head-revision': -> editor.checkoutHead()
'editor:checkout-head-revision': -> atom.project.getRepo()?.checkoutHeadForEditor(editor)
'editor:copy-path': -> editor.copyPathToClipboard()
'editor:move-line-up': -> editor.moveLineUp()
'editor:move-line-down': -> editor.moveLineDown()