Skip to content

x/tools/gopls: completion: rank 'continue' higher inside a loop #73690

Open
@xieyuschen

Description

@xieyuschen

gopls version

v0.18.1

go env

irrevelant

What did you do?

func _() {
	for {
		if true {
			con| // | is the cursor position
		}
	}
}

What did you see happen?

The const is put as the best option.

Image

What did you expect to see?

I expect to see the continue as the best option. My reason is:

  • when we use if inside a for loop, we have more confidence typed con wants to use continue rather than const.
  • const declared constants are prefered to put in file level.

Hence, I want to adjust the gopls logic for this part:

  • check whether direct parent node is if-stmt
  • check whether parent's ancestor has for stmt

If both of them are satisfied, provide continue with a higher score. I can help to do the code change.

Editor and settings

No response

Logs

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    ToolsThis label describes issues relating to any tools in the x/tools repository.goplsIssues related to the Go language server, gopls.gopls/completionIssues related to auto-completion in gopls.

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions