Can kate change toggle #comment to #\t → \t#, with "Ctrl+/"?

example:
Pre cord

\t\t\t Any cord
\t echo "Hello world"
    echo "Hello world"

Toggle comment(Ctrl+/) After.

#\t\t\t Any cord
#            Any cord
#\t echo "Hello world"
#    echo "Hello world"

I need style of comment is this.
Can kate insert #comment to prefix of cord before?

\t\t\t# Any cord
            # Any cord
\t # echo "Hello world"
    # echo "Hello world"

What probrem? This script cord is example.
I think not smart of comment style.

if [[ ${hello} == "hi" ]]
then
#    echo "Hi! Good day!"
else
#    echo "What?"
fi

If kate change style of comment this.
I think really easy read to comment of script cord.

if [[ ${hello} == "hi" ]]
then
    # echo "Hi! Good day!"
else
    # echo "What?"
fi