[tmux:tickets] #131 feature request: configuration parameters for window flags

2014-05-25 Thread gsigms



---

** [tickets:#131] feature request: configuration parameters for window flags**

**Status:** open
**Created:** Thu May 22, 2014 05:36 PM UTC by gsigms
**Last Updated:** Thu May 22, 2014 05:36 PM UTC
**Owner:** nobody

afaik, window flag (current/bell/zoom/...) characters are hardcoded.

It would be nice if there was configuration parameters to change the characters 
representing those flags ideally supporting utf8 characters. 


---

Sent from sourceforge.net because tmux-users@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/tmux/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/tmux/admin/tickets/options.  Or, if this is a mailing 
list, you can unsubscribe from the mailing list.--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


How to perform a copy-mode search from a normal binding

2014-05-25 Thread Marcelo MontĂș
Hi,

I'm trying to create a normal binding to the copy-mode search. Instead of 
typing `prefix [` then `?`, I would like to press a single key to do this.
My first thought was Ctrl-/, but it seems that tmux doesnt' allow mapping this 
key. So I've been trying to map , but none of the following works:

bind -n F12 copy-mode ?
bind -n F12 copy-mode \; ?
bind -n F12 copy-mode \; search-backward
bind -n F12 copy-mode \; vi copy search-backward
bind -n F12 vi copy search-backward


Any ideas on how to set this bind?

Regards,
mMontu
--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


[tmux:tickets] #130 Garbled screen after printing '\x0e'

2014-05-25 Thread siebz0r



---

** [tickets:#130] Garbled screen after printing '\x0e'**

**Status:** open
**Labels:** bug 
**Created:** Wed May 21, 2014 06:04 PM UTC by siebz0r
**Last Updated:** Wed May 21, 2014 06:04 PM UTC
**Owner:** nobody

While printing random characters to the terminal I quickly found out that 
sometimes the random characters mess up the entire output. After some 
troubleshooting I figured out that the character '\x0e' caused this.

This seems to be a familiar character as it looks like it has a history of 
messing up terminals.

To reproduce:

echo '\x0e'

Then try to type something, the characters will be garbled (well actually their 
different characters).

I have successfully reproduced this with zsh and bash. Without tmux this 
doesn't happen.


---

Sent from sourceforge.net because tmux-users@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/tmux/tickets/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/tmux/admin/tickets/options.  Or, if this is a mailing 
list, you can unsubscribe from the mailing list.--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: [tmux:tickets] #131 feature request: configuration parameters for window flags

2014-05-25 Thread Thomas Adam
Hi,

I really don't think this is necessary.

-- Thomas Adam


On 22 May 2014 18:36, gsigms  wrote:

> --
>
> * [tickets:#131]  feature
> request: configuration parameters for window flags*
>
> *Status:* open
> *Created:* Thu May 22, 2014 05:36 PM UTC by gsigms
> *Last Updated:* Thu May 22, 2014 05:36 PM UTC
> *Owner:* nobody
>
> afaik, window flag (current/bell/zoom/...) characters are hardcoded.
>
> It would be nice if there was configuration parameters to change the
> characters representing those flags ideally supporting utf8 characters.
> --
>
> Sent from sourceforge.net because tmux-users@lists.sourceforge.net is
> subscribed to https://sourceforge.net/p/tmux/tickets/
>
> To unsubscribe from further messages, a project admin can change settings
> at https://sourceforge.net/p/tmux/admin/tickets/options. Or, if this is a
> mailing list, you can unsubscribe from the mailing list.
>
>
> --
> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
> Instantly run your Selenium tests across 300+ browser/OS combos.
> Get unparalleled scalability from the best Selenium testing platform
> available
> Simple to use. Nothing to install. Get started now for free."
> http://p.sf.net/sfu/SauceLabs
> ___
> tmux-users mailing list
> tmux-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/tmux-users
>
>
--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: How to perform a copy-mode search from a normal binding

2014-05-25 Thread Nicholas Marriott
Use copy-mode then send-keys

 Original message 
From: Marcelo MontĂș  
Date: 23/05/2014  18:16  (GMT+00:00) 
To: tmux-users@lists.sourceforge.net 
Subject: How to perform a copy-mode search from a normal binding 
 
Hi,

I'm trying to create a normal binding to the copy-mode search. Instead of 
typing `prefix [` then `?`, I would like to press a single key to do this.
My first thought was Ctrl-/, but it seems that tmux doesnt' allow mapping this 
key. So I've been trying to map , but none of the following works:

bind -n F12 copy-mode ?
bind -n F12 copy-mode \; ?
bind -n F12 copy-mode \; search-backward
bind -n F12 copy-mode \; vi copy search-backward
bind -n F12 vi copy search-backward

Any ideas on how to set this bind?

Regards,
mMontu
--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: [tmux:tickets] #130 Garbled screen after printing '\x0e'

2014-05-25 Thread Patrick Shanahan
* siebz0r  [05-25-14 06:42]:
> 
> 
> 
> ---
> 
> ** [tickets:#130] Garbled screen after printing '\x0e'**
> 
> **Status:** open
> **Labels:** bug 
> **Created:** Wed May 21, 2014 06:04 PM UTC by siebz0r
> **Last Updated:** Wed May 21, 2014 06:04 PM UTC
> **Owner:** nobody
> 
> While printing random characters to the terminal I quickly found out
> that sometimes the random characters mess up the entire output.  After
> some troubleshooting I figured out that the character '\x0e' caused
> this.
> 
> This seems to be a familiar character as it looks like it has a history
> of messing up terminals.
> 
> To reproduce:
> 
> echo '\x0e'
> 
> Then try to type something, the characters will be garbled (well
> actually their different characters).
> 
> I have successfully reproduced this with zsh and bash. Without tmux this
> doesn't happen.

Quite possibly a problem with your local setup.  I tested in bash 4.2-68,
zsh 5.0.2-8 and xterm-297-1/tmux 1.8-2, but see no problem.

-- 
(paka)Patrick Shanahan   Plainfield, Indiana, USA  @ptilopteri
http://en.opensuse.orgopenSUSE Community Memberfacebook/ptilopteri
http://wahoo.no-ip.orgPhoto Album: http://wahoo.no-ip.org/gallery2
Registered Linux User #207535@ http://linuxcounter.net

--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: [tmux:tickets] #130 Garbled screen after printing '\x0e'

2014-05-25 Thread Balazs Kezes
On 2014-05-21 18:04 +, siebz0r wrote:
> To reproduce:
> echo '\x0e'
> Then try to type something, the characters will be garbled (well
> actually their different characters).

AFAIK this is working as intended. You are enabling the alternate
character set. In tmux/bash you can disable this via "echo $'\x0f'" or
issue a cat, press ^o then ^d.

> I have successfully reproduced this with zsh and bash. Without tmux
> this doesn't happen.

The reason you see it only in tmux is that screen/tmux enters this state
on ^n:

$ infocmp screen | grep smacs
sgr0=\E[m\017, smacs=^N, smcup=\E[?1049h, smir=\E[4h,

while xterm's sequence is a bit more complicated, less likely to hit
accidentally:

$ infocmp xterm | grep smacs
sgr0=\E(B\E[m, smacs=\E(0, smam=\E[?7h, smcup=\E[?1049h,

If you are interested, you can find more info about this in [1].

[1] http://www.in-ulm.de/~mascheck/various/alternate_charset/

-- 
Balazs

--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


mintty and C-Tab

2014-05-25 Thread Kresimir Kukulj
Hi,

mintty (cygwin terminal) can sent c-tab and c-s-tab sequences.

https://code.google.com/p/mintty/issues/detail?id=195


They use:
c-tab  ^[[1;5I
c-stab ^[[1;6I

I don't find any way of using bind-key with a raw sequence (like screen 
can). Is there a way to configure tmux for these sequences ?

--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users


Re: mintty and C-Tab

2014-05-25 Thread Nicholas Marriott
Easiest if you just want to bind them is to do something like

set -ag terminal-overrides '*:kf19=\E[1;5I:kf20=\E[1;6I'

and then bind F19 and F20.



On Sun, May 25, 2014 at 10:11:06PM +0200, Kresimir Kukulj wrote:
> Hi,
> 
> mintty (cygwin terminal) can sent c-tab and c-s-tab sequences.
> 
> https://code.google.com/p/mintty/issues/detail?id=195
> 
> 
> They use:
> c-tab  ^[[1;5I
> c-stab ^[[1;6I
> 
> I don't find any way of using bind-key with a raw sequence (like screen 
> can). Is there a way to configure tmux for these sequences ?
> 
> --
> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
> Instantly run your Selenium tests across 300+ browser/OS combos.
> Get unparalleled scalability from the best Selenium testing platform available
> Simple to use. Nothing to install. Get started now for free."
> http://p.sf.net/sfu/SauceLabs
> ___
> tmux-users mailing list
> tmux-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/tmux-users

--
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
___
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users