From: Joe Young <80432516+jpy-git@users.noreply.github.com> Date: Sat, 9 Apr 2022 20:49:40 +0000 (+0100) Subject: Remove redundant parentheses around awaited coroutines/tasks (#2991) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/75f99bded33abe962ca08bf16c77635ac9ca00a1?hp=75f99bded33abe962ca08bf16c77635ac9ca00a1 Remove redundant parentheses around awaited coroutines/tasks (#2991) This is a tricky one as await is technically an expression and therefore in certain situations requires brackets for operator precedence. However, the vast majority of await usage is just await some_coroutine(...) and similar in format to return statements. Therefore this PR removes redundant parens around these await expressions. Co-authored-by: Jelle Zijlstra Co-authored-by: Richard Si <63936253+ichard26@users.noreply.github.com> ---