{"id":22375884,"url":"https://github.com/stylewarning/cl-gap-buffer","last_synced_at":"2026-01-06T08:04:15.943Z","repository":{"id":236852836,"uuid":"625691381","full_name":"stylewarning/cl-gap-buffer","owner":"stylewarning","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-09T22:15:23.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-25T23:34:10.341Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Common Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stylewarning.png","metadata":{"files":{"readme":"README","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}},"created_at":"2023-04-09T22:05:45.000Z","updated_at":"2024-07-01T15:32:31.000Z","dependencies_parsed_at":"2024-04-29T00:08:20.522Z","dependency_job_id":"3fff8f84-2b40-4d8e-be8c-271f54e74e82","html_url":"https://github.com/stylewarning/cl-gap-buffer","commit_stats":null,"previous_names":["stylewarning/cl-gap-buffer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Fcl-gap-buffer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Fcl-gap-buffer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Fcl-gap-buffer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Fcl-gap-buffer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stylewarning","download_url":"https://codeload.github.com/stylewarning/cl-gap-buffer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245708990,"owners_count":20659625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-12-04T21:28:06.037Z","updated_at":"2026-01-06T08:04:15.876Z","avatar_url":"https://github.com/stylewarning.png","language":"Common Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"#+TITLE: The =CL-GAP-BUFFER= Library\n#+AUTHOR: Robert Smith\n#+EMAIL: quad@symbo1ics.com\n\n* Summary\n\nA small library for efficient-local-insertion strings represented as\ngap buffers. It operates efficiently for cursor-based editing.\n\n\n* Usage\n\nThe principle use follows. Mutable operations' output is elided.\n\nCreate a gap buffer.\n\n    : \u003e (defparameter buf (make-gap-buffer))\n\nAdd some data to it.\n\n    : \u003e (gap-buffer-insert-string buf \"hello\")\n    : \u003e (gap-buffer-string buf)\n    : \"hello\"\n    : \u003e (gap-buffer-insert-char buf #\\a)\n    : \u003e (gap-buffer-string buf)\n    : \"helloa\"\n\nMove about in the gap buffer.\n\n    : \u003e (gap-buffer-move-left buf)\n    : \u003e (gap-buffer-move-left buf)\n    : \u003e (gap-buffer-insert-char buf #\\y)\n    : \u003e (gap-buffer-string buf)\n    : \"hellyoa\"\n\nRemove characters.\n\n    : \u003e (gap-buffer-move-right buf)\n    : \u003e (gap-buffer-backspace buf)\n    : \u003e (gap-buffer-string buf)\n    : \"hellya\"\n    : \u003e (gap-buffer-insert-char buf #\\e)\n    : \u003e (gap-buffer-string buf)\n    : \"hellyea\"\n    : \u003e (gap-buffer-delete buf)\n    : \u003e (gap-buffer-string buf)\n    : \"hellye\"\n    : \u003e (gap-buffer-insert-char buf #\\s)\n    : \u003e (gap-buffer-string buf)\n    : \"hellyes\"\n\n\n* Dependencies\n\nNone.\n\n\n* License\n\nSee the file ~LICENSE~.\n\n----------\n### End of file\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstylewarning%2Fcl-gap-buffer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstylewarning%2Fcl-gap-buffer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstylewarning%2Fcl-gap-buffer/lists"}