lambdalisue / jupyter-vim-binding

Jupyter meets Vim. Vimmer will fall in love.
2.1k stars 136 forks source link

Vim's command line gets cut off in the bottom. #135

Closed ericxyun closed 5 years ago

ericxyun commented 5 years ago

Summary

Vim's command line, when I press : or /, has its bottom portion cut off. Is there a setting that I can play with to show the whole text input area? screen shot 2018-11-02 at 12 53 06 pm

Environment

ericxyun commented 5 years ago

Actually, I found a way to fix this problem. I made a ~/.jupyter/custom/custom.css folder/file and wrote in:

.CodeMirror-scroll {
    margin-bottom: 0px;
}

margin-bottom was previously set to: -30px.

screen shot 2018-11-02 at 5 05 14 pm