Update plugin list docs: replace is_running with status field#2179
Merged
Conversation
guluo2016
commented
Jun 8, 2026
| 플러그인은 사용 중인 동안 계속 실행되며, 비활성 상태가 일정 기간 지속되면 기본적으로 자동으로 중지됩니다. 이 동작은 [플러그인 가비지 수집기](#plugin-garbage-collector)에 의해 관리됩니다. 플러그인을 수동으로 중지하려면 해당 이름으로 `plugin stop`을 호출하십시오. | ||
|
|
||
| 예를 들어, 해당 플러그인에서 `gstat` 명령을 실행한 다음 `is_running` 상태를 확인하십시오. | ||
| 예를 들어, 해당 플러그인에서 `query` 명령을 실행한 다음 `status` 상태를 확인하십시오. |
Contributor
Author
There was a problem hiding this comment.
I updated this document with the help of the AI translation tool because I don't know Korean.
I checked it again after the update and couldn't find any issues.
Contributor
|
Thanks |
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.
The output format of
plugin listhas changed in PR nushell/nushell#14085.It now uses the
statusfield instead of theis_runningfield.So, we should update the corresponding documentation accordingly to avoid confusing users who refer to it.