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
| <?php | |
| namespace Appwrite\Auth; | |
| class Metamask extends OAuth2 | |
| { | |
| /** | |
| * @return string | |
| */ | |
| public function getName(): string |
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
| # Enable Zsh options for history | |
| setopt EXTENDED_HISTORY | |
| setopt INC_APPEND_HISTORY | |
| setopt SHARE_HISTORY | |
| setopt HIST_FIND_NO_DUPS | |
| # Clear local history and load a fresh session for the current directory | |
| function load_local_history() { | |
| if [[ -f .zsh_cmd_history ]]; then | |
| # Clear in-memory history and reload only local history |
OlderNewer