Adnan Zafar
Adnan Zafar
Check out [Markdown](http://github.github.com/github-flavored-markdown/) and use source blocks. Without them it's hard to tell quite what you mean to show with the alignment. I think this is what you meant your...
I keep the following lines in my `~/.vim/ftplugin/after/tex.vim`: ``` if exists('g:loaded_surround') " vim-surround: q for `foo' and Q for ``foo'' let b:surround_{char2nr('q')} = "`\r'" let b:surround_{char2nr('Q')} = "``\r''" endif ```...
@lafrenierejm Oh, no, that's a limitation of surround. Custom targets don't exist, but custom replacements do.
I can recreate this on master. With `expandtab` enabled, this correctly results in the following: ``` void foo() { if(bar) return; } ```