Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/macta/pharoflipper
Pharo Smalltalk Window Flipper
https://github.com/macta/pharoflipper
pharo pharo-smalltalk window-switcher
Last synced: about 1 month ago
JSON representation
Pharo Smalltalk Window Flipper
- Host: GitHub
- URL: https://github.com/macta/pharoflipper
- Owner: macta
- License: mit
- Created: 2024-02-07T00:41:06.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-07T08:51:17.000Z (8 months ago)
- Last Synced: 2024-09-25T21:24:10.965Z (about 2 months ago)
- Topics: pharo, pharo-smalltalk, window-switcher
- Language: Smalltalk
- Homepage:
- Size: 15.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Pharo](http://pharo.org/web/files/pharo.png)
# PharoFlipper
A simple Pharo Smalltalk keyboard window flipper - use CTRL-1 to flip to the last recently used window (similar to ^tab in Windows and cmd-` in OSX.To repeat the cycle from the beginning, wait ~1s and it will begin from the most LRU window again (not perfect, but its a simple solution avoiding more keyboard magic)
To load use:
```
Metacello new
repository: 'github://macta/PharoFlipper:main';
baseline: 'PharoFlipper';
load.
```The default keboard shortcut can be altered with either of:
```
self keyboardShortcut: $1 control asShortcut.
self keyboardShortcut: $1 meta asShortcut.
```[![Pharo 11](https://img.shields.io/badge/Pharo-11-informational)](https://pharo.org)