smartparensのlatex-modeでの\[\]の補完で、間にスペースを入れる

Emacsでsmartparensを使ってLaTeXを書いているとき、\[\]の補完で間にスペースが入ってくれた方が嬉しいです。

(sp-with-modes '(tex-mode
                 plain-tex-mode
                 latex-mode)
  (sp-local-pair "\\[" nil :actions :rem)
  (sp-local-pair "\\[" "\\]"
               :unless '(sp-latex-point-after-backslash)
               :post-handlers '(sp-latex-insert-spaces-inside-pair)))

をinit.elに書けばOKです。