- Download the latest zsh package: https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
# Add at the end of your ~/.bashrc file this content: | |
# Run Windows Programs (.exe) from WSL as Fallback without extension | |
eval "$(echo "orig_command_not_found_handle()"; declare -f command_not_found_handle | tail -n +2)" | |
command_not_found_handle() | |
{ | |
cmd=$1 | |
shift | |
args=( "$@" ) |
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
import 'package:flutter/material.dart'; | |
class NestedWillPopScope extends StatefulWidget { | |
const NestedWillPopScope({ | |
Key? key, | |
required this.child, | |
required this.onWillPop, | |
}) : super(key: key); | |
final Widget child; |
/* | |
* https://github.com/netnr/workers | |
* | |
* 2019-10-12 - 2022-05-05 | |
* netnr | |
* | |
* https://github.com/Rongronggg9/rsstt-img-relay | |
* | |
* 2021-09-13 - 2022-05-29 | |
* modified by Rongronggg9 |