{"id":13861927,"url":"https://github.com/flycheck/flycheck-inline","last_synced_at":"2026-01-28T10:32:47.168Z","repository":{"id":53524869,"uuid":"97754792","full_name":"flycheck/flycheck-inline","owner":"flycheck","description":"Display Flycheck errors inline","archived":false,"fork":false,"pushed_at":"2025-07-24T06:50:56.000Z","size":146,"stargazers_count":148,"open_issues_count":7,"forks_count":12,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-07-24T10:28:06.571Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/flycheck.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2017-07-19T19:44:05.000Z","updated_at":"2025-07-24T06:51:00.000Z","dependencies_parsed_at":"2025-01-18T16:45:46.921Z","dependency_job_id":"02a07ee3-2f4f-4b6c-9a2c-6c040bfc9da6","html_url":"https://github.com/flycheck/flycheck-inline","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/flycheck/flycheck-inline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-inline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-inline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-inline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-inline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flycheck","download_url":"https://codeload.github.com/flycheck/flycheck-inline/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-inline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28844014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T07:39:25.367Z","status":"ssl_error","status_checked_at":"2026-01-28T07:39:24.487Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":[],"created_at":"2024-08-05T06:01:33.074Z","updated_at":"2026-01-28T10:32:42.160Z","avatar_url":"https://github.com/flycheck.png","language":"Emacs Lisp","funding_links":[],"categories":["Emacs Lisp"],"sub_categories":[],"readme":"# flycheck-inline\n\n[![License GPL 3](https://img.shields.io/github/license/flycheck/flycheck-inline.svg)][LICENCE]\n[![MELPA](https://melpa.org/packages/flycheck-inline-badge.svg)](https://melpa.org/#/flycheck-inline)\n\nThis is an extension for [Flycheck][]. It implements a minor-mode for displaying\nerrors from Flycheck right below their reporting location, using overlays.\n\n![flycheck-inline warning preview](screenshots/warning.gif)\n\nIt also supports displaying *related errors* from Flycheck checkers that support\nthem.  Here is an example of this behavior for Rust borrowing errors:\n\n![flycheck-inline related errors preview](screenshots/related-errors.gif)\n\n(See also [flycheck-rust][flycheck-rust] for automatically setting up your Rust\nprojects for Flycheck)\n\n## Installation\n\nAdd `flycheck-inline.el` somewhere to your `load-path` and add the following to\nyour init file:\n\n```emacs-lisp\n(with-eval-after-load 'flycheck\n  (add-hook 'flycheck-mode-hook #'flycheck-inline-mode))\n```\n\nThis will turn on inline errors in all buffers where Flycheck is activated.\n\nYou can enable `flycheck-inline` in a subset of languages supported by Flycheck\nby conditionally enabling `flycheck-inline-mode` in the hook above, since the\nmode is buffer-local.\n\nAlternatively, if you do not use the setup above, you can use the command\n`global-flycheck-inline-mode` to enable `flycheck-inline-mode` in all current\nand future Flycheck buffers.\n\n## Configuration\n\nThe colors used to display the error/warning/info messages are inherited from\nthe compilation faces.  You can customize them through `M-x customize-group RET\nflycheck-inline RET`.\n\nIf you wish to change the delay before errors are displayed, see\n`flycheck-display-errors-delay`.\n\nYou can change the way overlays are created by customizing\n`flycheck-inline-display-function` and `flycheck-inline-clear-function`.  Here\nis an example using [quick-peek][] to display the overlays which adds bars\naround them:\n\n```emacs-lisp\n(setq flycheck-inline-display-function\n      (lambda (msg pos err)\n        (let* ((ov (quick-peek-overlay-ensure-at pos))\n               (contents (quick-peek-overlay-contents ov)))\n          (setf (quick-peek-overlay-contents ov)\n                (concat contents (when contents \"\\n\") msg))\n          (quick-peek-update ov)))\n      flycheck-inline-clear-function #'quick-peek-hide)\n```\n\nThe result:\n\n![flycheck-inline overlays with quick-peek](screenshots/quick-peek.png)\n\n## Contributing\n\nWe welcome all kinds of contributions, whether you write patches, open pull\nrequests, write documentation, help others with issues, or just tell other\npeople about your experiences with this extension.\n\n## License\n\nThis program is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation, either version 3 of the License, or (at your option) any later\nversion.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.  See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis program.  If not, see http://www.gnu.org/licenses/.\n\n[LICENCE]: https://github.com/flycheck/flycheck-licence/blob/master/LICENCE\n[contrib]: http://www.flycheck.org/en/latest/contributor/contributing.html\n[flycheck-rust]: https://github.com/flycheck/flycheck-rust\n[Flycheck]: http://www.flycheck.org/\n[quick-peek]: https://github.com/cpitclaudel/quick-peek\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflycheck%2Fflycheck-inline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflycheck%2Fflycheck-inline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflycheck%2Fflycheck-inline/lists"}