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
This is minor change that I needed to serve my particular demands; sharing it in the event it's of use:
preserve the indentation of the first comment.
Some editors (e.g. Emacs) use to automatically indent comments in assembly code, like
;; Do something mov $42, %eax ret ;; Do something else sub $1, %eax ret
Currently, reuse annotate would render the output like this
reuse annotate
;;; SPDX-FileCopyrightText: 2024 Author ;;; ;;; SPDX-License-Identifier: CCO ;; Do something mov $42, %eax ret ;; Do something else sub $1, %eax ret
The suggested change should preserve the original indentation of the first paragraph:
The text was updated successfully, but these errors were encountered:
Tentative fix in PR #920.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This is minor change that I needed to serve my particular demands; sharing it in the event it's of use:
preserve the indentation of the first comment.
TL;DR;
Some editors (e.g. Emacs) use to automatically indent comments in assembly code, like
Currently,
reuse annotate
would render the output like thisThe suggested change should preserve the original indentation of the first paragraph:
The text was updated successfully, but these errors were encountered: