Re: tmux-ut: A tmux runtime unit-test suite

2015-01-08 Thread Anish R Athalye
Homebrew has no issue with installing the latest commit. `brew install --HEAD tmux` suffices; it pulls from the SourceForge repository. See https://github.com/Homebrew/homebrew/blob/master/Library/Formula/tmux.rb for more details. There is a (semi-official) GitHub mirror as well:

Maintaining a consistent style

2014-10-23 Thread Anish R Athalye
Having a `.editorconfig` file in our repository can make it a lot easier to maintain a consistent style (between people using different editors with different settings, etc). For people who don’t use an editorconfig plugin for their editor, it will make no difference. For more details, see

PATCH: Add format for reading pane_inputoff

2014-10-22 Thread Anish R Athalye
It would be nice to be able to have pane_inputoff as a format. That would make it so that display-message could read from that variable, or a status line could use the ‘#{?pane_inputoff, …}’ notation, which is super nice for making a status line that reflects whether the currently selected pane

Re: web site error

2014-09-15 Thread Anish R Athalye
Could we start having GPG signed tagged releases? It’s a nice security feature to have. On Sep 15, 2014, at 8:36 PM, Helmut Tessarek tessa...@evermeet.cx wrote: Since today the web site shows tmux version 1.9 instead of 1.9a. Also the download link points to version 1.9. It's a little bit

Re: web site error

2014-09-15 Thread Anish R Athalye
Well, theoretically, the error on the website could be an attacker's attempt to get people to download malicious software or something. I didn’t mean to hijack the thread or anything. On Sep 15, 2014, at 10:08 PM, Helmut Tessarek tessa...@evermeet.cx wrote: On 15.09.14 20:58 , Anish R

[PATCH] Implement command to enable / disable input

2014-08-07 Thread Anish R Athalye
I think that it would be nice to have the ability to make specific panes read only (switching from read/write).I’ve wanted this feature to keep myself from accidentally sending input to certain processes that I’ve started in certain panes (that I’m just monitoring). This would be great for things

Re: [PATCH] Implement command to enable / disable input

2014-08-07 Thread Anish R Athalye
Here’s a slightly modified version of the patch — changed the interface slightly (better names).–Anish 0001-Implement-command-to-enable-disable-input.patch Description: Binary data On Aug 6, 2014, at 11:58 PM, Anish R Athalye aatha...@mit.edu wrote:I think that it would be nice to have