I'm using vim for Julia editing, and the Julia mode is great; for some reason, though either it or tComment <https://github.com/tomtom/tcomment_vim> (or their interaction ;-) uses the multiline comment style when commenting individual lines. So I end up with
#= for i=1:n =# #= prinln(i) =# #= end =# When I really would have wanted # for i=1:n # prinln(i) # end Or, I guess, some version with #= at the beginning and =# at the end, for that matter. I couldn't immediately find out how to configure tComment to “behave,” so I thought I'd check if anyone else is using it :-)
