Re: starting directory of new panes

2014-10-20 Thread J Raynor
I'm not seeing the problem on OS X. Did you build tmux yourself, or did you install it via macports, homebrew, or fink? Check your .profile (or .bash_profile) and see if you've got a "cd" command in there. On Sun, Oct 19, 2014 at 7:10 PM, Mark Volkmann wrote: > >> On Oct 19, 2014, at 7:03 PM, T

Re: starting directory of new panes

2014-10-19 Thread Mark Volkmann
> On Oct 19, 2014, at 7:03 PM, Thomas Adam wrote: > >> On 20 October 2014 00:53, Mark Volkmann wrote: >> That also opened a new pane, but not in the current directory. > > Which platform? Mac OS X -- Comprehensive Se

Re: starting directory of new panes

2014-10-19 Thread Nathan Schwarz
That behavior changed a while back. Here is my workaround: bind '"' split-window -c "#{pane_current_path}" bind '%' split-window -h -c "#{pane_current_path}" bind 'c' new-window -c "#{pane_current_path}" The only problem here is, that if you open a split or new window from e.g. man you'll land in

Re: starting directory of new panes

2014-10-19 Thread Thomas Adam
On 20 October 2014 00:53, Mark Volkmann wrote: > That also opened a new pane, but not in the current directory. Which platform? -- Thomas Adam -- Comprehensive Server Monitoring with Site24x7. Monitor 10 servers for $9/

Re: starting directory of new panes

2014-10-19 Thread Mark Volkmann
Here's what I have in my .tmux.conf file: bind | split-window -h -c "#{pane_current_path}" bind - split-window -v -c "#{pane_current_path}" I think according to the release notes that should open the new pane in the current directory, but it isn't. I also pressed prefix-: and entered the followi

Re: starting directory of new panes

2014-10-19 Thread Thomas Adam
On 20 October 2014 00:20, Mark Volkmann wrote: > It used to be that when I opened a new pane in tmux it would be in the > directory of the pane I was in. Now new panes always start in my home > directory. I don't know what I could have done to change that behavior, but > I prefer the old way. Is t