As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/usr/bin/env python3 | |
| import asyncio | |
| import iterm2 | |
| async def main(connection): | |
| async def update(theme): | |
| # Themes have space-delimited attributes, one of which will be light or dark. | |
| parts = theme.split(" ") | |
| if "dark" in parts: |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| Regex for matching ALL Japanese common & uncommon Kanji (4e00 – 9fcf) ~ The Big Kahuna! | |
| ([一-龯]) | |
| Regex for matching Hirgana or Katakana (*) | |
| ([ぁ-んァ-ン]) | |
| Regex for matching Non-Hirgana or Non-Katakana | |
| ([^ぁ-んァ-ン]) | |
| Regex for matching Hirgana or Katakana or basic punctuation (、。’) |