[fix] 함수 삭제 시 클립보드에 남은 함수 호출 블록 정리 - #3099
Open
pekopekopekopayo wants to merge 1 commit into
Open
Conversation
함수를 삭제하면 오브젝트 스크립트와 다른 함수 본문의 호출 블록은 정리되지만 클립보드(코드 복사 스냅샷)는 정리되지 않아, 붙여넣기로 정의 없는 함수 호출 블록이 되살아난다. 삭제된 함수 타입의 호출 블록을 클립보드에서도 동일하게 제거해 이를 방지한다.
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

문제
함수를 삭제하면 오브젝트 스크립트와 다른 함수 본문의 호출 블록은 함께 정리되지만, 코드 복사로 만들어진 클립보드 스냅샷은 정리되지 않습니다. 이 상태에서 붙여넣기를 하면 정의가 없는 함수 호출 블록이
프로젝트에 되살아납니다.
수정 내용
함수 삭제 시(파이썬 모드 전환의 미지원 함수 일괄 삭제 포함) 클립보드 스냅샷에도 스크립트와 동일한 정리를 적용합니다.
검증