Skip to content

Commit ce331d4

Browse files
committed
Reformatted CHANGELOG
Also fixed some minor typos.
1 parent 68e2e1e commit ce331d4

File tree

3 files changed

+74
-43
lines changed

3 files changed

+74
-43
lines changed

Diff for: .editorconfig

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# EditorConfig: http://EditorConfig.org
2+
3+
root = true
4+
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
charset = utf-8
9+
10+
[*.md]
11+
max_line_length = 76
12+
indent_size = 4
13+
trim_trailing_whitespace = true
14+
15+
[Vagrantfile]
16+
indent_style = space
17+
indent_size = 2
18+
trim_trailing_whitespace = true
19+
20+
21+
[{*.sh,*.tmux}]
22+
indent_style = space
23+
indent_size = 2
24+
trim_trailing_whitespace = true

Diff for: .gitattributes

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# Force text files to have unix eols, so Windows/Cygwin does not break them
2-
*.* eol=lf
1+
# The linguist directives are for https://github.com/github/linguist
32

4-
# These files are unfortunately not recognized as text files so
5-
# explicitly listing them here
6-
Vagrantfile eol=lf linguist-vendored
7-
*.png binary
3+
*.md text eol=lf whitespace=blank-at-eol
4+
*.sh text eol=lf whitespace=blank-at-eol diff=php
5+
*.tmux text eol=lf whitespace=blank-at-eol diff=php
6+
7+
Vagrantfile text eol=lf linguist-vendored
8+
video/* linguist-documentation
89

9-
# (Programming) Language
10-
static/* linguist-vendored
10+
# Binary Types
11+
*.png binary

Diff for: CHANGELOG.md

+41-35
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,62 @@
1-
# Changelog
1+
CHANGELOG
2+
=========
23

34
### master
4-
- add 'copy pane current directory' feature
5+
6+
- Add 'copy pane current directory' feature
57

68
### v2.2.0, Oct 12, 2015
7-
- add support for custom copy command (if xclip and others aren't accessible, and you want to have your
8-
custom copy command)
9-
- add cygwin support via `putclip` command
9+
10+
- Add support for custom copy command (if `xclip` and others aren't
11+
accessible, and you want to have your custom copy command)
12+
- Add Cygwin support via `putclip` command
1013

1114
### v2.1.0, Jun 17, 2015
12-
- add support for `xsel` on linux (@ctjhoa)
13-
- make `reattach-to-user-namespace` on OS X optional (@bosr)
14-
- support for shell `vi` mode (@xnaveira)
15-
- deprecate `Alt-y`
15+
16+
- Add support for `xsel` on Linux (@ctjhoa)
17+
- Make `reattach-to-user-namespace` on OS X optional (@bosr)
18+
- Support for shell `vi` mode (@xnaveira)
19+
- Deprecate <kbd>Alt</kbd>–<kbd>y</kbd>
1620

1721
### v2.0.0, Dec 06, 2014
18-
- change copy mode "put selection" key binding to `Y` so that vi mode `Ctrl-y`
19-
is not overriden.
22+
23+
- Change copy mode *put selection* key binding to <kbd>Y</kbd> so that vi
24+
mode <kbd>Ctrl</kbd>–<kbd>y</kbd> is not overridden.
2025

2126
### v1.0.0, Dec 06, 2014
22-
- simplify README
23-
- remove screencast from the master branch because it's too large for download.
24-
The screencast is moved to the separate `screencast` branch and can be cloned
25-
from there.
26-
- show error message if plugin dependencies aren't insalled
27-
- update README related plugins list
28-
- update README to show how to update xclip selection on Linux
29-
- add vagrant-related setup files for testing on Linux
27+
28+
- Remove screen-cast from the master branch because it's too large for
29+
download. The screen-cast is moved to the separate `screencast` branch
30+
and can be cloned from there.
31+
- Show error message if plugin dependencies aren't installed.
32+
- Update `README` related plugins list
33+
- Update `README` to show how to update `xclip` selection on Linux
34+
- Add vagrant-related setup files for testing on Linux
3035

3136
### v0.0.4, Jul 29, 2014
32-
- update readme to reflect github organization change
33-
- add screencast script file
34-
- import screencast project
35-
- add `video/README.md`
36-
- put screencast in the readme
37+
38+
- Update `README` to reflect GitHub organization change
39+
- Add screen-cast script file
40+
- Import screen-cast project
41+
- Add `video/README.md`
42+
- Put screen-cast in the `README`
3743

3844
### v0.0.3, Jun 29, 2014
3945

40-
- adds wait time for 'yank line' when in the remote shell (ssh, mosh) so yank
41-
line is more correct
42-
- fix bug when yank-line is used in the last line in buffer. New 'solution' is
43-
implemented for copying multiple lines.
44-
- code cleanup
45-
- yank-line never yanks 'newline' char for multiple-line commands in shell (this
46-
is actually tmux/bash bug).
46+
- Adds wait time for 'yank line' when in the remote shell (`ssh`, `mosh`)
47+
to capture the most accurate value.
48+
- Fix bug when yank-line is used in the last line in buffer. New
49+
'solution' is implemented for copying multiple lines.
50+
- Code cleanup.
51+
- yank-line never yanks 'newline' char for multiple-line commands in shell
52+
(this is actually tmux/bash bug).
4753

4854
### v0.0.2, Jun 25, 2014
4955

50-
- updated readme
51-
- for OS X, also check if 'reattach-to-user-namespace' is installed
52-
- add a feature for copying current command line to clipboard
56+
- Updated `README`.
57+
- For OS X, also check if `reattach-to-user-namespace` is installed.
58+
- Add a feature for copying current command line to clipboard.
5359

5460
### v0.0.1, Jun 24, 2014
5561

56-
- first working version
62+
- First working version.

0 commit comments

Comments
 (0)