https://github.com/ir33k/fringe-hide
Emacs fringe-hide minor mode that hides left, right or both fringes in current buffer.
https://github.com/ir33k/fringe-hide
emacs emacs-lisp
Last synced: 3 months ago
JSON representation
Emacs fringe-hide minor mode that hides left, right or both fringes in current buffer.
- Host: GitHub
- URL: https://github.com/ir33k/fringe-hide
- Owner: ir33k
- License: gpl-3.0
- Created: 2022-02-08T00:25:49.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-08T00:38:35.000Z (over 3 years ago)
- Last Synced: 2025-01-08T16:30:26.640Z (5 months ago)
- Topics: emacs, emacs-lisp
- Language: Emacs Lisp
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Emacs fringe-hide minor mode
Hide buffer left, right or both fringes. Read mode documentation
or/and source code for more details. Examples:```elisp
;; M-x fringe-hide-mode
;; M-x fringe-hide(fringe-hide-mode 1)
(fringe-hide-mode -1)(fringe-hide "left")
(fringe-hide "right-margin")
(fringe-hide "both")
(fringe-hide "show")
```