| Shortcut | Description |
|---|---|
ranger |
Start Ranger |
Q |
Quit Ranger |
R |
Reload current directory |
? |
Ranger Manpages / Shortcuts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Example of bi-directional communication between a main thread and isolate. | |
| import 'dart:io'; // for exit(); | |
| import 'dart:async'; | |
| import 'dart:isolate'; | |
| Future<SendPort> initIsolate() async { | |
| Completer completer = new Completer<SendPort>(); | |
| ReceivePort isolateToMainStream = ReceivePort(); |