0

Image for description:

enter image description here


If you notice carefully, blue background of gnome-terminal is visible below where emacs ends. This probably means that emacs isn't taking full space inside gnome-terminal. How do I solve it (except setting my terminal background as same color which is an annoying hack)?

  • I apologize if I sound too harsh, please fix your captcha. or report it. `Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.99 Safari/537.36 Vivaldi/1.0.303.32` –  Oct 26 '15 at 14:44
  • 1
    FWIW, I don't notice any "blue background of gnome-terminal ... below where emacs ends". Unless you think this is clear to other readers, maybe consider annotating your screen shot to indicate this blue background portion. – Drew Oct 26 '15 at 16:54
  • @Drew below the text which is below the modeline/powerline of emacs. `"C++ requires a type...."` below this. –  Oct 26 '15 at 19:27
  • OK, I see what looks like a blank line there, and the background color is only slightly different from the black background of the rest. – Drew Oct 26 '15 at 21:23

2 Answers2

1

It's hard to say for sure just from a screenshot, but perhaps the window size of your terminal is not an integer multiple of the line height of the text? If that's the case, then you'll get the same behavior even when emacs isn't running; try using less to view some longish file and see if there's the same gap after the last visible line. You could also try adjusting your terminal's font size to see if that gap changes size.

db48x
  • 15,741
  • 1
  • 19
  • 23
1

This probably means that emacs isn't taking full space inside gnome-terminal.

Probably not. It could happen even when emacs takes full space due to the background color rendering of fringes. For example, you have the same problem on the right side also. Moreover, on the right side this blue fringe becomes thicker below the mode line. All this points to font and line sizes resulting in fractional multiples of the screen size. Emacs is taking the full space but rendering in different colors.

linum-mode and mode-line themes often cause this. Besides turning off linum-mode, try tweaking font metrics as others have suggested above. Or play with fringe theme colors. Make them same as the main theme's background color. Some themes come with a variable for such tweaking. For example:

(setq solarized-distinct-fringe-background t)

You'll have to find equivalent variables in your active theme.

Emacs User
  • 5,553
  • 18
  • 48