How can I comment a list of arguments to a function? I'd like to do something like this, which does not work:
my_func \
  # This is for something
  arg_1 \
  \
  # This is for something else
  arg_2 \
  \
  # This is not not for anything
  arg_3
Which obviously doesn't work. Is there any way to achieve something like this? The next option would be something like this:
my_func \
  arg_1 \ # This is for something
  arg_2 \ # This is for something else
  arg_3 # This is not not for anything
Which is less desirable in my book but also does not work. Any ideas?
 
     
     
    