davidhalter / jedi-vim

Using the jedi autocompletion library for VIM.
MIT License
5.27k stars 370 forks source link

Line numbers in Preview window #1027

Closed mlongval closed 3 years ago

mlongval commented 3 years ago

This is not an "issue" but rather a question.

I use line numbering when coding.

I want to turn OFF the line numbers but ONLY in the PREVIEW window.

How/where would I instruct the jedi-vim plugin to NOT display line numbers in the PREVIEW window?

Thanks

davidhalter commented 3 years ago

Sorry I don't know that. It's probably somehow possible.

You can probably do something like autocommand BufReadPost quickfix set nonumber. Good luck. The VIM documentation is usually pretty good about this stuff, but VIM itself is very complicated, so it's hard to find out where to look.