1

I have recently started using vim plugins and was trying to setup python-mode with pep8. I wanted to see split the window vertically. I was able to achieve it using autocmd commad as :

:autocmd FileType qf wincmd L 

But now height of file window and quickfix window reduces to 10. Is there a way to change this to max possible height ?

1 Answer 1

1

If you need to adjust the height of pymode quickfix window, following documentation you can try to change these settings in your .vimrc

let g:pymode_quickfix_minheight = 3
let g:pymode_quickfix_maxheight = 6

If you need just to open a quickfix window vertically, you can do so by using :vert command

:vert copen
Sign up to request clarification or add additional context in comments.

3 Comments

is it possible to adjust the variable based on window size ? I want it to be always equal to the size of the window. also could you please point me how to navigate from 1 error to another ?
About pointing to navigate - read documentation, as mentioned romainl, and use Google.
This function pymode#quickfix_open(onlyRecognized, maxHeight, minHeight, jumpError) in python-mode/autoload/pymode.vim seems to be probably responsible for size adjustment of the quickfix. You can change it, or you can ask for this feature at issue tracker.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.