You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
╰─ cat /tmp/minimal.go
package main
type A interface {
// This is a small example with 79 char but is formatted when limit is 80 chars.
Create(uniqueIdWithPaddingToRe int, nameWithPaddingToRe string) (*int, error)
// AcquireWithMin method is used to acquire desired and minimum number of
// units. This may block if at least the minimum number of resources are not
// available. It returns the number of units allocated which can be between
// desired or minimum units. Additionally it returns the percent of capacity
// used including the current allocation. If a request tries to allocate more
// than the capacity, it will receive units equal to the capcity when available.
}
func main() {}
The format response is creating new incomplete lines
╰─ ~/.vim-go/golines -m 79 --shorten-comments /tmp/minimal.go
package main
type A interface {
// This is a small example with 79 char but is formatted when limit is 80
// chars.
Create(
uniqueIdWithPaddingToRe int,
nameWithPaddingToRe string,
) (*int, error)
// AcquireWithMin method is used to acquire desired and minimum number of
// units. This may block if at least the minimum number of resources are
// not <<<<<<<< This is not expected.
// available. It returns the number of units allocated which can be between
// desired or minimum units. Additionally it returns the percent of
// capacity used including the current allocation. If a request tries to
// allocate more than the capacity, it will receive units equal to the
// capcity when available.
}
func main() {}
The text was updated successfully, but these errors were encountered:
For the following:
The format response is creating new incomplete lines
The text was updated successfully, but these errors were encountered: