tmuxinator 0.6.6.pre.3 → 0.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +5 -2
- data/lib/tmuxinator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ddb873e6fc9447c5e8f89cc46d7c9bac0cb5c74
|
|
4
|
+
data.tar.gz: 0099271382f87b75ca699f3ea5037e7d41e85def
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4783c0e42837502b3b1118f097ddab3df038c12fec4cc78934c54014c3a9cd091692d3ce924494274f9f1c0a0145a115c58b8116530842f465f13c30573346c6
|
|
7
|
+
data.tar.gz: abf778e9236024b50eb08d2073567275b7f9e945a21d80a2935e1a66cafe2ab5b8b39422968fcee94565053302a4382cf29467727bcf6cc6284cf77655598b99
|
data/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
- Fix bash completion with a single argument #148
|
|
4
4
|
- Fix regression where an array of commands for a window wasn't working #149
|
|
5
5
|
- Add an option to call tmux wrappers or derivatives #154
|
|
6
|
-
-
|
|
6
|
+
- Refactor build\_panes to always return an array #157
|
|
7
|
+
- Clean up some branching code using `.presence` #163
|
|
8
|
+
- Setup TravisCI test matrix for different tmux versions #164
|
|
9
|
+
- Fix some grammar and spelling in readme #166
|
|
10
|
+
- Make multiple commands use tmux's `send-keys` rather than just using `&&` for both panes and windows #100
|
|
7
11
|
|
|
8
12
|
## 0.6.5
|
|
9
13
|
- Change deprecation continue message from any key to just the enter key
|
data/README.md
CHANGED
|
@@ -30,7 +30,7 @@ export EDITOR='vim'
|
|
|
30
30
|
|
|
31
31
|
## tmux
|
|
32
32
|
|
|
33
|
-
The recommended version of tmux to use is 1.8.
|
|
33
|
+
The recommended version of tmux to use is 1.8. Your mileage may vary for
|
|
34
34
|
earlier versions. Refer to the FAQ for any odd behaviour.
|
|
35
35
|
|
|
36
36
|
### base-index
|
|
@@ -61,7 +61,7 @@ Add the following to your `~/.zshrc`:
|
|
|
61
61
|
|
|
62
62
|
## Usage
|
|
63
63
|
|
|
64
|
-
A working knowledge of tmux is assumed. You should understand what
|
|
64
|
+
A working knowledge of tmux is assumed. You should understand what windows and
|
|
65
65
|
panes are in tmux. If not please consult the [man pages](http://manpages.ubuntu.com/manpages/precise/en/man1/tmux.1.html#contenttoc6) for tmux.
|
|
66
66
|
|
|
67
67
|
### Create a project
|
|
@@ -119,6 +119,9 @@ windows:
|
|
|
119
119
|
|
|
120
120
|
## Panes
|
|
121
121
|
|
|
122
|
+
**_Note that if you wish to use panes, make sure that you do not have `.` in your project name. tmux uses `.` to delimit between window and pane indicies,
|
|
123
|
+
and tmuxinator uses the project name in combination with these indicies to target the correct pane or window._**
|
|
124
|
+
|
|
122
125
|
Panes are optional and are children of window entries, but unlike windows, they do not need a name. In the following example, the `editor` window has 2 panes, one running vim, the other guard.
|
|
123
126
|
|
|
124
127
|
```yaml
|
data/lib/tmuxinator/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tmuxinator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.6
|
|
4
|
+
version: 0.6.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Allen Bargi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-11-
|
|
11
|
+
date: 2013-11-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|