{"id":13443374,"url":"https://github.com/emacs-vs/line-reminder","last_synced_at":"2026-01-28T15:31:00.935Z","repository":{"id":43303552,"uuid":"134923542","full_name":"emacs-vs/line-reminder","owner":"emacs-vs","description":"Line annotation for changed and saved lines","archived":false,"fork":false,"pushed_at":"2026-01-01T05:49:33.000Z","size":1274,"stargazers_count":83,"open_issues_count":5,"forks_count":8,"subscribers_count":7,"default_branch":"master","last_synced_at":"2026-01-06T00:18:23.012Z","etag":null,"topics":["visual-studio","vs"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emacs-vs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["emacs-vs","jcs090218"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2018-05-26T02:46:27.000Z","updated_at":"2026-01-01T05:49:36.000Z","dependencies_parsed_at":"2023-02-18T09:00:44.988Z","dependency_job_id":"7eaa55ca-0544-45f9-9be3-184707fb4ee0","html_url":"https://github.com/emacs-vs/line-reminder","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/emacs-vs/line-reminder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emacs-vs%2Fline-reminder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emacs-vs%2Fline-reminder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emacs-vs%2Fline-reminder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emacs-vs%2Fline-reminder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emacs-vs","download_url":"https://codeload.github.com/emacs-vs/line-reminder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emacs-vs%2Fline-reminder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846338,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["visual-studio","vs"],"created_at":"2024-07-31T03:01:59.846Z","updated_at":"2026-01-28T15:31:00.931Z","avatar_url":"https://github.com/emacs-vs.png","language":"Emacs Lisp","funding_links":["https://github.com/sponsors/emacs-vs","https://github.com/sponsors/jcs090218","https://www.paypal.me/jcs090218","https://www.patreon.com/jcs090218"],"categories":["Emacs Lisp"],"sub_categories":[],"readme":"[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)\n[![JCS-ELPA](https://raw.githubusercontent.com/jcs-emacs/badges/master/elpa/v/line-reminder.svg)](https://jcs-emacs.github.io/jcs-elpa/#/line-reminder)\n[![MELPA](https://melpa.org/packages/line-reminder-badge.svg)](https://melpa.org/#/line-reminder)\n[![MELPA Stable](https://stable.melpa.org/packages/line-reminder-badge.svg)](https://stable.melpa.org/#/line-reminder)\n\n# line-reminder\n\u003e Line annotation for changed and saved lines.\n\n[![CI](https://github.com/emacs-vs/line-reminder/actions/workflows/test.yml/badge.svg)](https://github.com/emacs-vs/line-reminder/actions/workflows/test.yml)\n\n| Emacs (with `line-reminder`) | Visual Studio   |\n|:----------------------------:|:---------------:|\n| ![](etc/emacs.png)           | ![](etc/vs.png) |\n\n## 🔨 Usage\n\nEnable for all buffers.\n\n```el\n(global-line-reminder-mode t)\n```\n\nOr you can just enable in specific buffer you want.\n\n```el\n(line-reminder-mode t)\n```\n\n## ❗ Display Annotation\n\nYou can either set `line-reminder-show-option` to `linum` or `indicators` like\nthe following snippet below.\n\n```el\n(setq line-reminder-show-option 'linum)  ; Or set to 'indicators\n```\n\nChange display symbol: (Default to `\"▐\"`)\n\n```el\n(setq line-reminder-modified-sign \"▐\"\n      line-reminder-saved-sign \"▐\")\n```\n\n### 💥 Using `linum`\n\n`linum` uses text to display annotation, you can customize the two variables\nbelow to change the display symbol. The default value for both variables is set\nto `\"▐\"`.\n\n* `line-reminder-modified-sign`\n* `line-reminder-saved-sign`\n\nCustomize format for how line annotation is displayed.\n\n```el\n(setq line-reminder-linum-format \"%s \")\n```\n\n### 💥 Using `indicators`\n\nCustomize the symbol of the fringe: (Default to `'line-reminder--default-bitmap`)\n\n```el\n(setq line-reminder-bitmap 'filled-rectangle)\n```\n\nIf you change the fringe location by altering this variable: (Default to `'left-fringe`)\n\n```el\n(setq line-reminder-fringe-placed 'left-fringe)\n```\n\n## 🖼️ Display thumbnail\n\nYou can display thumbnail by setting:\n\n```el\n(setq line-reminder-thumbnail t)\n```\n\n*P.S. fringe is oppsing from variable `line-reminder-fringe-placed`, hence it's\ndefault to `right-fringe`*\n\nYou can change the thumbnail bitmap by: (Defaul to `line-reminder--default-thumbnail-bitmap`)\n\n```el\n(setq line-reminder-thumbnail-bitmap 'filled-rectangle)\n```\n\nChange thumbnail display symbol: (Default to `\"▐\"`)\n\n```el\n(setq line-reminder-thumb-modified-sign \"▐\"\n      line-reminder-thumb-saved-sign \"▐\")\n```\n\n## 💨 Face\n\nList of face you can customize.\n\n\u003e For regular indicators\n\n* `line-reminder-modified-sign-face`\n* `line-reminder-saved-sign-face`\n\n\u003e For thumbnail\n\n* `line-reminder-modified-sign-thumb-face`\n* `line-reminder-saved-sign-thumb-face`\n\n## 🛠️ Contribute\n\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)\n[![Elisp styleguide](https://img.shields.io/badge/elisp-style%20guide-purple?logo=gnuemacs\u0026logoColor=white)](https://github.com/bbatsov/emacs-lisp-style-guide)\n[![Donate on paypal](https://img.shields.io/badge/paypal-donate-1?logo=paypal\u0026color=blue)](https://www.paypal.me/jcs090218)\n[![Become a patron](https://img.shields.io/badge/patreon-become%20a%20patron-orange.svg?logo=patreon)](https://www.patreon.com/jcs090218)\n\nIf you would like to contribute to this project, you may either\nclone and make pull requests to this repository. Or you can\nclone the project and establish your own branch of this tool.\nAny methods are welcome!\n\n### 🔬 Development\n\nTo run the test locally, you will need the following tools:\n\n- [Eask](https://emacs-eask.github.io/)\n- [Make](https://www.gnu.org/software/make/) (optional)\n\nInstall all dependencies and development dependencies:\n\n```sh\neask install-deps --dev\n```\n\nTo test the package's installation:\n\n```sh\neask package\neask install\n```\n\nTo test compilation:\n\n```sh\neask compile\n```\n\n**🪧 The following steps are optional, but we recommend you follow these lint results!**\n\nThe built-in `checkdoc` linter:\n\n```sh\neask lint checkdoc\n```\n\nThe standard `package` linter:\n\n```sh\neask lint package\n```\n\n*📝 P.S. For more information, find the Eask manual at https://emacs-eask.github.io/.*\n\n## ⚜️ License\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n\nSee [`LICENSE`](./LICENSE.txt) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femacs-vs%2Fline-reminder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femacs-vs%2Fline-reminder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femacs-vs%2Fline-reminder/lists"}