Muir Manders

Results 14 issues of Muir Manders

In ```go var f func(int) func(int) func(int) f(123)(456)(789) ``` "456" is fontified as a function.

Hello again. With gopls/company-mode I'm seeing eglot re-order the top completion candidate: ```go package main func fooBar() {} func _() { var sbp string var s struct { blah int...

Apologies if I missed something, but there I couldn't find a way to execute code lens commands other than clicking on the code lens overlay text. gopls has some lenses...

With a simplified runner like: ``` import ast import refactor class Replace(refactor.Rule): def match(self, node): if type(node) == ast.Call: return refactor.Replace( node, ast.Call( ast.Attribute(node.args[0], node.func.id), node.args[1:], node.keywords, ), ) return...