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

Improval of auto pairing in code editor #18029

Merged
merged 2 commits into from
Mar 26, 2025
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
51 changes: 24 additions & 27 deletions src/NECompletion-Morphic/CompletionEngine.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -427,36 +427,33 @@ CompletionEngine >> showDetail [

{ #category : 'keyboard' }
CompletionEngine >> smartBackspace [
| opposite currentText currentEditor smartCharacter |

currentEditor := editor.
currentEditor hasSelection
ifTrue: [ ^ false ].

currentText := currentEditor text.
smartCharacter := currentText at: currentEditor startIndex - 1 ifAbsent: [ ^ false ]. "take the opposite"

opposite := self smartCharacterOppositeOf: smartCharacter ifAbsent: [ ^ false ]. "test if the next char is opposite"

opposite = (currentText at: currentEditor stopIndex ifAbsent: [ ^ false ])
ifFalse: [ ^ false ]. "test if there is an extra opposite to remove"

| opposite smartCharacter index |
editor hasSelection ifTrue: [ ^ false ].
smartCharacter := editor text
at: editor startIndex - 1
ifAbsent: [ ^ false ]. "take the opposite"
opposite := self
smartCharacterOppositeOf: smartCharacter
ifAbsent: [ ^ false ].

index := editor stopIndex.
[
index <= editor text size and: [ (editor text at: index) isSeparator ] ]
whileTrue: [ index := index + 1 ].

(index <= editor text size and: [ (editor text at: index) = opposite ])
ifFalse: [ ^ false ].
(self
smartNeedExtraRemoveIn: currentText
for: smartCharacter
opposite: opposite
at: currentEditor startIndex)
ifFalse: [ ^ false ].

currentEditor closeTypeIn.

currentEditor
selectInvisiblyFrom: currentEditor startIndex - 1
to: currentEditor stopIndex.
currentEditor replaceSelectionWith: currentEditor nullText.

smartNeedExtraRemoveIn: editor text
for: smartCharacter
opposite: opposite
at: editor startIndex) ifFalse: [ ^ false ].

editor closeTypeIn.
editor selectInvisiblyFrom: editor startIndex - 1 to: index.
editor replaceSelectionWith: editor nullText.
self invalidateEditorMorph.

^ true
]

Expand Down
14 changes: 14 additions & 0 deletions src/NECompletion-Tests/CompletionEngineTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -828,6 +828,20 @@ CompletionEngineTest >> testSmartBackspaceOutsideSmartCharacters [
description: 'smartbackspace ignored if after smart character'
]

{ #category : 'tests' }
CompletionEngineTest >> testSmartBackspaceRemoveBothCharactersWithSpaces [
"Test that smart backspace removes both characters even with spaces between them"

self setEditorText: '( )'.
self selectAt: 2.

self
assert: controller smartBackspace
description: 'Smart backspace should return true'.

self assert: editor text equals: ''
]

{ #category : 'tests - keyboard' }
CompletionEngineTest >> testSmartBackspaceWithSelection [

Expand Down