README.md in termup-1.0.1 vs README.md in termup-1.1.0
- old
+ new
@@ -11,11 +11,11 @@
$ gem install termup
Usage
-----
-#### Getting Started ####
+### Getting Started ###
Call the following command:
$ termup create new_project
@@ -25,29 +25,55 @@
And now you're good to go:
$ termup start new_project
-#### YAML Syntax ####
+### YAML Syntax ###
# ~/.config/termup/new_project.yml
---
- - tab1:
- - cd ~/foo/bar
- - git status
- - tab2:
- - mysql -u root
- - show databases;
- - tab3: echo "hello world"
- - tab4:
- - cd ~/foo/project
- - autotest
+ tabs:
+ - tab1:
+ - cd ~/foo/bar
+ - git status
+ - tab2:
+ - mysql -u root
+ - show databases;
+ - tab3: echo "hello world"
+ - tab4:
+ - cd ~/foo/project
+ - autotest
+ options:
+ iterm:
+ width: 2
+ height: 2
Tabs can contain a single command, or YAML arrays to execute multiple commands.
-#### Shortcut ####
+### Shortcut ###
Commands have a shortcut for even fewer keystrokes.
$ termup s new_project
That's equivalent to `termup start new_project`.
+
+### iTerm 2 Split Pane Support ###
+
+Specify iTerm option to use split pane.
+
+ options:
+ iterm:
+ width: 2
+ height: 2
+
+The setting above turns to:
+
+ #################
+ # # #
+ # 1 # 3 #
+ # # #
+ #################
+ # # #
+ # 2 # 4 #
+ # # #
+ #################