Skip to content

Commit

Permalink
Merge pull request #21 from adri09070/19-I-loose-ctrlc-in-debugger-wh…
Browse files Browse the repository at this point in the history
…en-loading-chest-

removing problematic shortcuts that mess up with the "cmd+c" shortcut
  • Loading branch information
StevenCostiou authored Aug 2, 2023
2 parents 585de05 + f2800ab commit d63d5e9
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 52 deletions.
6 changes: 0 additions & 6 deletions src/Chest-Commands/ChestCopyObjectCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ ChestCopyObjectCommand class >> defaultName [
^ 'Copy object in a clipboard chest'
]

{ #category : #defaults }
ChestCopyObjectCommand class >> defaultShortcutKey [

^ $c meta shift
]

{ #category : #executing }
ChestCopyObjectCommand >> execute [

Expand Down
6 changes: 0 additions & 6 deletions src/Chest-Commands/ChestLoadObjectIntoCodeCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ ChestLoadObjectIntoCodeCommand class >> defaultName [
^ 'Load object from chest'
]

{ #category : #default }
ChestLoadObjectIntoCodeCommand class >> defaultShortcutKey [

^ $c meta , $l meta
]

{ #category : #testing }
ChestLoadObjectIntoCodeCommand class >> isVisibleForContext: aCodePresenter [

Expand Down
6 changes: 0 additions & 6 deletions src/Chest-Commands/ChestRemoveAllChestsCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ ChestRemoveAllChestsCommand class >> defaultName [
^ 'Remove all chests'
]

{ #category : #default }
ChestRemoveAllChestsCommand class >> defaultShortcutKey [

^ $c meta , $r meta , $m meta shift
]

{ #category : #executing }
ChestRemoveAllChestsCommand >> execute [

Expand Down
6 changes: 0 additions & 6 deletions src/Chest-Commands/ChestRemoveChestCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ ChestRemoveChestCommand class >> defaultName [
^ 'Remove chest'
]

{ #category : #default }
ChestRemoveChestCommand class >> defaultShortcutKey [

^ $c meta , $r meta , $m meta
]

{ #category : #testing }
ChestRemoveChestCommand >> canBeExecuted [

Expand Down
6 changes: 0 additions & 6 deletions src/Chest-Commands/ChestStoreObjectCommand.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ ChestStoreObjectCommand class >> defaultName [
^ 'Store object in a chest'
]

{ #category : #'accessing - defaults' }
ChestStoreObjectCommand class >> defaultShortcutKey [

^ $c meta , $s meta
]

{ #category : #initialization }
ChestStoreObjectCommand >> buildChoicePresenter [

Expand Down
19 changes: 0 additions & 19 deletions src/Chest/TChestAssociation.extension.st

This file was deleted.

6 changes: 3 additions & 3 deletions src/Chest/TChestAssociation.trait.st
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ TChestAssociation classSide >> key: key value: value variableName: variableName
variableName: variableName
]

{ #category : #'*Chest' }
{ #category : #accessing }
TChestAssociation >> chestChildren [

^ { } asOrderedCollection
]

{ #category : #'*Chest' }
{ #category : #accessing }
TChestAssociation >> chestEvaluation [

^ self value
]

{ #category : #'*Chest' }
{ #category : #accessing }
TChestAssociation >> chestName [

^ self key
Expand Down

0 comments on commit d63d5e9

Please sign in to comment.