Skip to content
New issue

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

マクロの定義と使用部分が一行ですべて出力されてしまう #2

Open
henoc opened this issue May 6, 2019 · 2 comments
Labels
help wanted Extra attention is needed

Comments

@henoc
Copy link

henoc commented May 6, 2019

マクロをsnippetとして定義したりsnippet内で使用したりするとスニペット出力時に改行が無くなってしまうようなのですが、これは設定で変更したりできますか?

@hatoo
Copy link
Owner

hatoo commented May 6, 2019

cargo-snippetは、

  1. synでコードをパースする
  • この時点でコードのインデントなどの情報は失われる
  1. (synのAST上でいろいろ処理したあと)ASTからインデントのないトークン列を出してrustfmtで整形してスニペットを出力する

という感じで動いているのですが、rustfmtが対応していないのでマクロの定義などの出力がトークン列そのままになってしまっています。

rust-lang/rustfmt#8

なので現状rustfmtの対応待ちで簡単な解決策はとくにありません 😢

@henoc
Copy link
Author

henoc commented May 6, 2019

なるほど、rustfmtがそのまま出力するからなんですね、、一旦構文木に直すことを考えると確かにそうでした
ありがとうございます🙇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants