Is there a way to get a vertical line between the fringe and the buffer, such as in http://manual.macromates.com/en/navigation_overview#collapsing_text_blocks_foldings?
EDIT -- See http://screencast.com/t/rpY9abzQK for the 1-px wide separation line I'd like to have between the 8-px fringe and the buffer itself. I hope it's clearer now...
(set-face-attribute 'fringe nil :background "black")The fringe can have a certain width like:(add-to-list 'default-frame-alist '(left-fringe . 11))or(add-to-list 'default-frame-alist '(right-fringe . 0))Whereas the prior two settings affect every window in the frame, it is possible to control fringes on a per-window basis -- e.g.,(setq left-fringe-width 10)and(setq right-fringe-width 0)Or, those window settings can be made a default withsetq-default.Display Margins. Other than that, no, I don't think there is anything available for this. There is no frame parameter for it, for example.