Matt Klich

Results 16 comments of Matt Klich

I just went through the exercise of fixing this. Here's what works for me. .bashrc ``` if [[ -n ${TMUX} ]]; then export TERM="screen-256color" else export TERM="xterm-256color" fi ``` .tmux.conf...

I experience this too. It happens on both `table-wide` and `interactive`. Thing is, it _does work_ it's just excruciatingly slow the first time. Once the cache is built it seems...

#22 and #21 have been proposed to resolve this. I don't intend this to diminish the project or its creator as I have benefited from it and appreciate the work,...

FYI, you are probably best to use something else (`sh` maybe). I have #22 open (maintains python 2.7 support) and someone else has #21 (basically the same as yours, python...

FWIW, I have given up and replaced `executor` with [`sh`](https://sh.readthedocs.io/en/latest/) in my applications.

Huge +1 here. My team has created an internal MCP server that we're using to share resources, prompts, and tools for all our devs under a single, authenticated, HTTP endpoint....