As the title says, when I run python code with <leader>r "\n" is printed instead of printing each word on a new line. Example: ``` print "A\nNew\nLine" print "A" print "New" print "Line" ``` shows ``` "A\nNew\nLine\nA\nNew\nLine" ``` vimrc [here](https://gist.github.com/thirtypancakes/7988947) Is this the expected behaviour? If so is there a way to change it? Let me know if more info is needed. Cheers.