We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
.swiftformat
Here's a minimal example:
// main.swift class A { let v: Int init() { self.v = 0 } }
// .swiftformat --self init-only
With these two files in the same folder and with swiftformat installed,
swiftformat
:Neoformat
// main.swift class A { let v: Int init() { v = 0 } }
:!swiftformat %:p
I tried poking around in formatters/swift.vim and a bit in neoformat.vim but I can't quite isolate the issue.
formatters/swift.vim
neoformat.vim
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here's a minimal example:
With these two files in the same folder and with
swiftformat
installed,:Neoformat
yields:!swiftformat %:p
yields the expected outcome:I tried poking around in
formatters/swift.vim
and a bit inneoformat.vim
but I can't quite isolate the issue.The text was updated successfully, but these errors were encountered: