Skip to content Skip to sidebar Skip to footer
Showing posts with the label Vim

Vim Syntax Highlighting Of Doxygen Style Docstrings In Python

I started working with doxygen to generate the documentation of my Python code. I use doxypy filter… Read more Vim Syntax Highlighting Of Doxygen Style Docstrings In Python

Python Docstring With Vim Pythoncomplete Is Not Displaying Newlines For My Own Class Functions

I am getting some unexpected results when trying to use Python Omni Completion on my own class func… Read more Python Docstring With Vim Pythoncomplete Is Not Displaying Newlines For My Own Class Functions

Highlight Python Docstrings As Comments (vim Syntax Highlighting)

Is it possible to modify python.vim (and the corresponding colorscheme file) such that triple-quote… Read more Highlight Python Docstrings As Comments (vim Syntax Highlighting)

Equivalent Of % Movement For Python Files

For languages with {} to denote blocks, vim has the almighty % key. What is the equivalent movemen… Read more Equivalent Of % Movement For Python Files

Vim Regex For Python2 Print To Python3

So say I have a python v2.7 file with some code like this: print 'asdf' print 'hi mom!&… Read more Vim Regex For Python2 Print To Python3

How To Set Correct Indendation When Using Formatprg=autopep8?

With the following option set: setlocal formatprg=autopep8\ -aa\ - When I select a single line in V… Read more How To Set Correct Indendation When Using Formatprg=autopep8?

How Do I Make Text Wrapping Match Current Indentation Level In Vim?

Does anyone know of a way to get vim to wrap long lines of text such that the position of the wrapp… Read more How Do I Make Text Wrapping Match Current Indentation Level In Vim?

Highlighting Unmatched Brackets In Vim

I'm getting burned repeatedly by unmatched parentheses while writing python code in vim. I lik… Read more Highlighting Unmatched Brackets In Vim