Nvim recognizes the following events. Names are case-insensitive.
BufAdd
Just after creating a new buffer which is
added to the buffer list, or adding a buffer
| 'system': | |
| [ | |
| { | |
| 'type': 'text', | |
| 'text': "You are Claude Code, Anthropic's official CLI for Claude.", | |
| 'cache_control': {'type': 'ephemeral'} | |
| }, | |
| { | |
| 'type': 'text', | |
| 'text': 'You are an interactive CLI tool that helps users with software engineering tasks. |
| # Detect operating system in Makefile. | |
| # Author: He Tao | |
| # Date: 2015-05-30 | |
| OSFLAG := | |
| ifeq ($(OS),Windows_NT) | |
| OSFLAG += -D WIN32 | |
| ifeq ($(PROCESSOR_ARCHITECTURE),AMD64) | |
| OSFLAG += -D AMD64 | |
| endif |
| #!/bin/bash -x | |
| date | |
| ### 0. Install helm, kubectl (kubernetes-cli), and k3d with brew | |
| brew install helm k3d kubectl | |
| ### 1. Create a cluster with k3d that connects port 443 to the loadbalancer provided by k3d | |
| # Optionally install with more agents `--agents 3` | |
| k3d cluster create k3d-rancher \ | |
| --api-port 6550 \ |