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

Add beginning of defun and end of defun functions #80

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

granddaifuku
Copy link

This resolves #79

Implemented beginning-of-defun and end-of-defun functions.

Example

Taking the following function as an example.

@Get("/foo")
suspend fun foo(): HttpResponse {
    log.info("My name is ${coroutineContext[CoroutineName]?.name}")
    return HttpResponse.of("OK")
}

The cursor moves the point expressed as *.

Beginning of defun

@Get("/foo")
*suspend fun foo(): HttpResponse {
    log.info("My name is ${coroutineContext[CoroutineName]?.name}")
    return HttpResponse.of("OK")
}

End of defun

@Get("/foo")
suspend fun foo(): HttpResponse {
    log.info("My name is ${coroutineContext[CoroutineName]?.name}")
    return HttpResponse.of("OK")
}
*

end-of-defun function works as same as other language modes do.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

beginning-of-defun and end-of-defun does not move point to start/end of function
1 participant