Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

20676 Categorize uncategorized methods in classes starting with K #470

Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions src/Keymapping-Core/KMBuffer.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ Class {
#category : #Keymapping-Core
}

{ #category : #'as yet unclassified' }
{ #category : #initialize-release }
KMBuffer class >> resetUniqueInstance [
uniqueInstance := nil
uniqueInstance := nil
]

{ #category : #'as yet unclassified' }
{ #category : #accessing }
KMBuffer class >> uniqueInstance [
^uniqueInstance ifNil: [ uniqueInstance := self new ].
]

{ #category : #'as yet unclassified' }
{ #category : #accessing }
KMBuffer class >> uniqueInstance: aBuffer [
uniqueInstance := aBuffer.
]
Expand Down
14 changes: 7 additions & 7 deletions src/Keymapping-Core/KMLog.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Class {
#category : #Keymapping-Core
}

{ #category : #'as yet unclassified' }
{ #category : #logging }
KMLog class >> log: aKeyEvent [

debug == true ifFalse: [ ^self ].
Expand All @@ -21,7 +21,7 @@ KMLog class >> log: aKeyEvent [
flush.
]

{ #category : #'as yet unclassified' }
{ #category : #logging }
KMLog class >> logCompleteMatch: aKeymap [

debug == true ifFalse: [ ^self ].
Expand All @@ -33,7 +33,7 @@ KMLog class >> logCompleteMatch: aKeymap [
flush.
]

{ #category : #'as yet unclassified' }
{ #category : #logging }
KMLog class >> logCompleteMatchBetween: aMorph and: aKeymap [

debug == true ifFalse: [ ^self ].
Expand All @@ -46,7 +46,7 @@ KMLog class >> logCompleteMatchBetween: aMorph and: aKeymap [
flush.
]

{ #category : #'as yet unclassified' }
{ #category : #logging }
KMLog class >> logPartialMatch: anEvent [

debug == true ifFalse: [ ^self ].
Expand All @@ -58,18 +58,18 @@ KMLog class >> logPartialMatch: anEvent [
flush.
]

{ #category : #'as yet unclassified' }
{ #category : #accessing }
KMLog class >> logger [

^Transcript
]

{ #category : #'as yet unclassified' }
{ #category : #debugging }
KMLog class >> removeDebug [
debug := false
]

{ #category : #'as yet unclassified' }
{ #category : #debugging }
KMLog class >> setDebug [
debug := true
]
2 changes: 1 addition & 1 deletion src/Keymapping-Pragmas/KMKeymapBuilder.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Class {
#category : #Keymapping-Pragmas
}

{ #category : #'as yet unclassified' }
{ #category : #'instance creation' }
KMKeymapBuilder class >> for: aShortcutName platform: aPlatform [
^self new
shortcutName: aShortcutName;
Expand Down
4 changes: 2 additions & 2 deletions src/Keymapping-Settings/KMShortcutSetting.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ Class {
#category : #Keymapping-Settings
}

{ #category : #'as yet unclassified' }
{ #category : #'instance creation' }
KMShortcutSetting class >> for: aShortcutName in: aCategory [
^ (self new)
shortcutName: aShortcutName;
category: aCategory;
yourself
]

{ #category : #'as yet unclassified' }
{ #category : #settings }
KMShortcutSetting class >> settingInputWidgetForNode: aSettingNode [
| catcherMorph theme |
theme := UITheme builder.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ KOI8RTextConverter class >> encodingNames [

]

{ #category : #'as yet unclassified' }
{ #category : #initialization }
KOI8RTextConverter class >> initialize [
self initializeTables
]
Expand Down