Popup window size #4967
-
Is it possible to resize popup windows? For example if I have the config
can I make the popup window bigger so to avoid linebreaks? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
No you can't. Honestly, I think that If you are a user of VS Code, I'd suggest something like I also wonder why it's even desirable to blame a file that shows up in the diff. Personally I usually want to blame code that I see in the editor (which is often not modified, so doesn't show up in the diff). I'd look for whatever blame functionality is offered by the IDE or editor you are using. |
Beta Was this translation helpful? Give feedback.
No you can't. Honestly, I think that
output: popup
is not a suitable UI for displaying this kind of content.If you are a user of VS Code, I'd suggest something like
command: git blame -- {{.SelectedFile.Name}} | code -
. Adapting this to other editors/IDEs is left as an exercise for the reader.I also wonder why it's even desirable to blame a file that shows up in the diff. Personally I usually want to blame code that I see in the editor (which is often not modified, so doesn't show up in the diff). I'd look for whatever blame functionality is offered by the IDE or editor you are using.