{"id":13862780,"url":"https://github.com/DamienCassou/shell-switcher","last_synced_at":"2025-07-14T13:32:22.843Z","repository":{"id":3753999,"uuid":"4829675","full_name":"DamienCassou/shell-switcher","owner":"DamienCassou","description":"An emacs minor mode to easily switch between shell buffers (like with alt+tab)","archived":false,"fork":false,"pushed_at":"2024-12-29T16:57:39.000Z","size":84,"stargazers_count":43,"open_issues_count":0,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-13T19:57:52.935Z","etag":null,"topics":["elisp","emacs","eshell"],"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/DamienCassou.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2012-06-29T07:12:24.000Z","updated_at":"2024-12-29T16:58:08.000Z","dependencies_parsed_at":"2025-04-13T19:50:37.410Z","dependency_job_id":"2f9cdda8-6457-497e-b477-fc94166c3c52","html_url":"https://github.com/DamienCassou/shell-switcher","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/DamienCassou/shell-switcher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamienCassou%2Fshell-switcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamienCassou%2Fshell-switcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamienCassou%2Fshell-switcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamienCassou%2Fshell-switcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DamienCassou","download_url":"https://codeload.github.com/DamienCassou/shell-switcher/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamienCassou%2Fshell-switcher/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265297480,"owners_count":23742586,"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":["elisp","emacs","eshell"],"created_at":"2024-08-05T06:01:52.410Z","updated_at":"2025-07-14T13:32:22.828Z","avatar_url":"https://github.com/DamienCassou.png","language":"Emacs Lisp","funding_links":[],"categories":["Emacs Lisp"],"sub_categories":[],"readme":"Emacs shell-switcher\n==========\n\n[![Build Status](https://travis-ci.org/DamienCassou/shell-switcher.png?branch=master)](https://travis-ci.org/DamienCassou/shell-switcher)\n\nshell-switcher provides fast switching between shell buffers.\n\n\u003cfigure\u003e\n\u003ca href=\"http://www.youtube.com/watch?feature=player_embedded\u0026v=jNSrrQwcCr4\" target=\"_blank\"\u003e\u003cimg src=\"http://img.youtube.com/vi/jNSrrQwcCr4/0.jpg\" \nalt=\"shell-switcher screencast\" width=\"480\" height=\"360\" border=\"10\" /\u003e\u003c/a\u003e\n\u003cfigcaption\u003eA shell-switcher \u003ca href=\"http://www.youtube.com/watch?feature=player_embedded\u0026v=jNSrrQwcCr4\"\u003escreencast\u003c/a\u003e\u003c/ficaption\u003e\n\u003c/figure\u003e\n\n# Installation\n\n## With Emacs' packaging system\n\nMake sure you have [marmalade repository](http://marmalade-repo.org/)\nready to use and type `M-x package-install shell-switcher`.\n\n## Manually\n\nDownload shell-switcher from\n[github](https://github.com/DamienCassou/shell-switcher\n\"shell-switcher project page\") and add it to your `load-path`. Then,\nadd the following to your init file:\n\n    (require 'shell-switcher)\n\n# Configuration\n\nTo activate shell-switcher, you have to set the variable\n`shell-switcher-mode` to t, either through `customize-variable` or\nwith:\n\n   (setq shell-switcher-mode t)\n\nYou have to customize `shell-switcher-new-shell-function` if eshell is\nnot your shell of choice. For example, if you wanted to use Powershell: \n\n    (defun make-powershell ()\n      \"Create a new `powershell'.\"\n      (powershell (generate-new-buffer-name \"*PowerShell*\")))\n    (setq-default shell-switcher-new-shell-function 'make-powershell)\n\n# Usage\n\nThe standard key bindings are:\n\n- `C-'` opens the first 2 buffers (one after the other) and switch between them\n- Repeating `'` continues switching after an initial `C-'`\n- `C-M-'` forces the creation of a new shell\n- `C-x 4 '` is similar to `C-'` but within another window. \n\nYou can change them by adapting and adding the following to your\nconfiguration file:\n\n    (define-key shell-switcher-mode-map (kbd \"C-'\")\n\t            'shell-switcher-switch-buffer)\n    (define-key shell-switcher-mode-map (kbd \"C-x 4 '\")\n\t            'shell-switcher-switch-buffer-other-window)\n    (define-key shell-switcher-mode-map (kbd \"C-M-'\")\n\t            'shell-switcher-new-shell)\n\nIf you tend to create shells without using shell-switcher but still\nwould like to easily switch between them, write the following (to be\nadapted if eshell is not your preferred shell):\n\n    (add-hook 'eshell-mode-hook 'shell-switcher-manually-register-shell)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDamienCassou%2Fshell-switcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDamienCassou%2Fshell-switcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDamienCassou%2Fshell-switcher/lists"}