This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name SE No Sticky Top Bar | |
| // @namespace https://github.com/vyznev/ | |
| // @description Disables the sticky top bar on Stack Exchange sites | |
| // @author Ilmari Karonen | |
| // @version 0.3.0 | |
| // @copyright 2021-2022, Ilmari Karonen | |
| // @downloadURL https://gist.github.com/vyznev/7c9a7ddc5c057d4c895864e460b4a88d/raw/se_no_sticky_topbar.user.js | |
| // @homepageURL https://meta.stackexchange.com/a/368984 | |
| // @match *://*.stackexchange.com/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (define-derived-mode blog-mode text-mode "Blog" | |
| "A major mode for editing blog posts.") | |
| (add-to-list 'auto-mode-alist '("/home/soeren/scm/blog/[^/]*\\.txt\\'" . blog-mode)) | |
| (add-hook 'blog-mode-hook 'longlines-mode) |