{"id":13861837,"url":"https://github.com/clemera/buffer-expose","last_synced_at":"2025-09-05T16:49:08.295Z","repository":{"id":57746336,"uuid":"172074052","full_name":"clemera/buffer-expose","owner":"clemera","description":"Visual buffer switching in Emacs using a window grid","archived":false,"fork":false,"pushed_at":"2019-04-29T13:56:09.000Z","size":497,"stargazers_count":172,"open_issues_count":2,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-13T22:41:18.318Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/clemera.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-02-22T13:49:29.000Z","updated_at":"2024-12-15T21:41:41.000Z","dependencies_parsed_at":"2022-08-28T00:13:03.673Z","dependency_job_id":null,"html_url":"https://github.com/clemera/buffer-expose","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/clemera/buffer-expose","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemera%2Fbuffer-expose","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemera%2Fbuffer-expose/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemera%2Fbuffer-expose/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemera%2Fbuffer-expose/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clemera","download_url":"https://codeload.github.com/clemera/buffer-expose/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clemera%2Fbuffer-expose/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273788897,"owners_count":25168663,"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","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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:31.261Z","updated_at":"2025-09-05T16:49:08.252Z","avatar_url":"https://github.com/clemera.png","language":"Emacs Lisp","funding_links":[],"categories":["Emacs Lisp"],"sub_categories":[],"readme":"#+BEGIN_HTML\n\u003ca href=\"https://elpa.gnu.org/packages/buffer-expose.html\"\u003e\u003cimg alt=\"GNU ELPA\" src=\"https://elpa.gnu.org/favicon.png\"/\u003e\u003c/a\u003e\n#+END_HTML\n\n* Description\n\nVisual buffer switching using a window grid ([[https://github.com/abo-abo/ace-window][ace-window ]]key hints are optional):\n\n[[./images/grid-aw.png]]\n\n* Installation\n\nFor manual installation, clone the repository and call:\n\n#+BEGIN_SRC elisp\n(package-install-file \"/path/to/buffer-expose.el\")\n#+END_SRC\n\n* Config\n\nTo use the default bindings for switching buffers with buffer-expose\nuse buffer-expose-mode:\n\n#+BEGIN_SRC elisp\n(buffer-expose-mode 1)\n#+END_SRC\n\nThe default bindings are defined in buffer-expose-mode-map:\n\n#+BEGIN_SRC elisp\n(defvar buffer-expose-mode-map\n  (let ((map (make-sparse-keymap)))\n    (define-key map (kbd \"\u003cs-tab\u003e\") 'buffer-expose)\n    (define-key map (kbd \"\u003cC-tab\u003e\") 'buffer-expose-no-stars)\n    (define-key map (kbd \"C-c \u003cC-tab\u003e\") 'buffer-expose-current-mode)\n    (define-key map (kbd \"C-c C-m\") 'buffer-expose-major-mode)\n    (define-key map (kbd \"C-c C-d\") 'buffer-expose-dired-buffers)\n    (define-key map (kbd \"C-c C-*\") 'buffer-expose-stars)\n    map)\n  \"Mode map for command `buffer-expose-mode'.\")\n#+END_SRC\n\nThere are user options to customize which buffers are shown and you can easily\nwrite your own command, like this:\n\n#+BEGIN_SRC elisp\n(defun my-expose-command (\u0026optional max)\n  (interactive \"P\")\n  (buffer-expose-show-buffers\n    \u003cyour-buffer-list\u003e max [\u003chide-regexes\u003e \u003cfilter-func\u003e]))\n#+END_SRC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclemera%2Fbuffer-expose","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclemera%2Fbuffer-expose","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclemera%2Fbuffer-expose/lists"}