From ba632751a0c1f4f83e998629066e5950980c87ae Mon Sep 17 00:00:00 2001 From: probablycorey Date: Wed, 21 Aug 2013 17:00:05 -0700 Subject: [PATCH] Rename application:run-specs to application:run-all-specs --- keymaps/atom.cson | 2 +- src/application-menu.coffee | 2 +- src/atom-application.coffee | 2 +- src/root-view.coffee | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/keymaps/atom.cson b/keymaps/atom.cson index 9578e52bf..cce6eee44 100644 --- a/keymaps/atom.cson +++ b/keymaps/atom.cson @@ -9,7 +9,7 @@ 'meta-m': 'application:minimize' 'meta-,': 'application:show-settings' 'alt-meta-ctrl-m': 'application:zoom' - 'meta-alt-ctrl-s': 'application:run-specs' + 'meta-alt-ctrl-s': 'application:run-all-specs' 'meta-s': 'core:save' 'meta-S': 'core:save-as' diff --git a/src/application-menu.coffee b/src/application-menu.coffee index 046b5c9c4..bb3d2255c 100644 --- a/src/application-menu.coffee +++ b/src/application-menu.coffee @@ -58,7 +58,7 @@ class ApplicationMenu { label: 'Hide Others', command: 'application:hide-other-applications' } { label: 'Show All', command: 'application:unhide-all-applications' } { type: 'separator' } - { label: 'Run Specs', command: 'application:run-specs' } + { label: 'Run Atom Specs', command: 'application:run-all-specs' } { type: 'separator' } { label: 'Quit', command: 'application:quit' } ] diff --git a/src/atom-application.coffee b/src/atom-application.coffee index 41cbb4a8e..e6166cf06 100644 --- a/src/atom-application.coffee +++ b/src/atom-application.coffee @@ -99,7 +99,7 @@ class AtomApplication handleEvents: -> @on 'application:about', -> Menu.sendActionToFirstResponder('orderFrontStandardAboutPanel:') - @on 'application:run-specs', -> @runSpecs(exitWhenDone: false, resourcePath: global.devResourcePath) + @on 'application:run-all-specs', -> @runSpecs(exitWhenDone: false, resourcePath: global.devResourcePath) @on 'application:show-settings', -> (@focusedWindow() ? this).openPath("atom://config") @on 'application:quit', -> app.quit() @on 'application:hide', -> Menu.sendActionToFirstResponder('hide:') diff --git a/src/root-view.coffee b/src/root-view.coffee index b62b99458..2f1da7789 100644 --- a/src/root-view.coffee +++ b/src/root-view.coffee @@ -67,7 +67,7 @@ class RootView extends View @on 'pane:active-item-title-changed', '.active.pane', => @updateTitle() @command 'application:about', -> ipc.sendChannel('command', 'application:about') - @command 'application:run-specs', -> ipc.sendChannel('command', 'application:run-specs') + @command 'application:run-all-specs', -> ipc.sendChannel('command', 'application:run-all-specs') @command 'application:show-settings', -> ipc.sendChannel('command', 'application:show-settings') @command 'application:quit', -> ipc.sendChannel('command', 'application:quit') @command 'application:hide', -> ipc.sendChannel('command', 'application:hide')