mirror of
https://github.com/tmux-plugins/tmux-yank.git
synced 2026-09-10 07:36:17 -04:00
Reformatted CHANGELOG
Also fixed some minor typos.
This commit is contained in:
parent
68e2e1e200
commit
ce331d4e17
24
.editorconfig
Normal file
24
.editorconfig
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# EditorConfig: http://EditorConfig.org
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
charset = utf-8
|
||||
|
||||
[*.md]
|
||||
max_line_length = 76
|
||||
indent_size = 4
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[Vagrantfile]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
|
||||
[{*.sh,*.tmux}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
trim_trailing_whitespace = true
|
||||
17
.gitattributes
vendored
17
.gitattributes
vendored
|
|
@ -1,10 +1,11 @@
|
|||
# Force text files to have unix eols, so Windows/Cygwin does not break them
|
||||
*.* eol=lf
|
||||
# The linguist directives are for https://github.com/github/linguist
|
||||
|
||||
# These files are unfortunately not recognized as text files so
|
||||
# explicitly listing them here
|
||||
Vagrantfile eol=lf linguist-vendored
|
||||
*.md text eol=lf whitespace=blank-at-eol
|
||||
*.sh text eol=lf whitespace=blank-at-eol diff=php
|
||||
*.tmux text eol=lf whitespace=blank-at-eol diff=php
|
||||
|
||||
Vagrantfile text eol=lf linguist-vendored
|
||||
video/* linguist-documentation
|
||||
|
||||
# Binary Types
|
||||
*.png binary
|
||||
|
||||
# (Programming) Language
|
||||
static/* linguist-vendored
|
||||
|
|
|
|||
76
CHANGELOG.md
76
CHANGELOG.md
|
|
@ -1,56 +1,62 @@
|
|||
# Changelog
|
||||
CHANGELOG
|
||||
=========
|
||||
|
||||
### master
|
||||
- add 'copy pane current directory' feature
|
||||
|
||||
- Add 'copy pane current directory' feature
|
||||
|
||||
### v2.2.0, Oct 12, 2015
|
||||
- add support for custom copy command (if xclip and others aren't accessible, and you want to have your
|
||||
custom copy command)
|
||||
- add cygwin support via `putclip` command
|
||||
|
||||
- Add support for custom copy command (if `xclip` and others aren't
|
||||
accessible, and you want to have your custom copy command)
|
||||
- Add Cygwin support via `putclip` command
|
||||
|
||||
### v2.1.0, Jun 17, 2015
|
||||
- add support for `xsel` on linux (@ctjhoa)
|
||||
- make `reattach-to-user-namespace` on OS X optional (@bosr)
|
||||
- support for shell `vi` mode (@xnaveira)
|
||||
- deprecate `Alt-y`
|
||||
|
||||
- Add support for `xsel` on Linux (@ctjhoa)
|
||||
- Make `reattach-to-user-namespace` on OS X optional (@bosr)
|
||||
- Support for shell `vi` mode (@xnaveira)
|
||||
- Deprecate <kbd>Alt</kbd>–<kbd>y</kbd>
|
||||
|
||||
### v2.0.0, Dec 06, 2014
|
||||
- change copy mode "put selection" key binding to `Y` so that vi mode `Ctrl-y`
|
||||
is not overriden.
|
||||
|
||||
- Change copy mode *put selection* key binding to <kbd>Y</kbd> so that vi
|
||||
mode <kbd>Ctrl</kbd>–<kbd>y</kbd> is not overridden.
|
||||
|
||||
### v1.0.0, Dec 06, 2014
|
||||
- simplify README
|
||||
- remove screencast from the master branch because it's too large for download.
|
||||
The screencast is moved to the separate `screencast` branch and can be cloned
|
||||
from there.
|
||||
- show error message if plugin dependencies aren't insalled
|
||||
- update README related plugins list
|
||||
- update README to show how to update xclip selection on Linux
|
||||
- add vagrant-related setup files for testing on Linux
|
||||
|
||||
- Remove screen-cast from the master branch because it's too large for
|
||||
download. The screen-cast is moved to the separate `screencast` branch
|
||||
and can be cloned from there.
|
||||
- Show error message if plugin dependencies aren't installed.
|
||||
- Update `README` related plugins list
|
||||
- Update `README` to show how to update `xclip` selection on Linux
|
||||
- Add vagrant-related setup files for testing on Linux
|
||||
|
||||
### v0.0.4, Jul 29, 2014
|
||||
- update readme to reflect github organization change
|
||||
- add screencast script file
|
||||
- import screencast project
|
||||
- add `video/README.md`
|
||||
- put screencast in the readme
|
||||
|
||||
- Update `README` to reflect GitHub organization change
|
||||
- Add screen-cast script file
|
||||
- Import screen-cast project
|
||||
- Add `video/README.md`
|
||||
- Put screen-cast in the `README`
|
||||
|
||||
### v0.0.3, Jun 29, 2014
|
||||
|
||||
- adds wait time for 'yank line' when in the remote shell (ssh, mosh) so yank
|
||||
line is more correct
|
||||
- fix bug when yank-line is used in the last line in buffer. New 'solution' is
|
||||
implemented for copying multiple lines.
|
||||
- code cleanup
|
||||
- yank-line never yanks 'newline' char for multiple-line commands in shell (this
|
||||
is actually tmux/bash bug).
|
||||
- Adds wait time for 'yank line' when in the remote shell (`ssh`, `mosh`)
|
||||
to capture the most accurate value.
|
||||
- Fix bug when yank-line is used in the last line in buffer. New
|
||||
'solution' is implemented for copying multiple lines.
|
||||
- Code cleanup.
|
||||
- yank-line never yanks 'newline' char for multiple-line commands in shell
|
||||
(this is actually tmux/bash bug).
|
||||
|
||||
### v0.0.2, Jun 25, 2014
|
||||
|
||||
- updated readme
|
||||
- for OS X, also check if 'reattach-to-user-namespace' is installed
|
||||
- add a feature for copying current command line to clipboard
|
||||
- Updated `README`.
|
||||
- For OS X, also check if `reattach-to-user-namespace` is installed.
|
||||
- Add a feature for copying current command line to clipboard.
|
||||
|
||||
### v0.0.1, Jun 24, 2014
|
||||
|
||||
- first working version
|
||||
- First working version.
|
||||
|
|
|
|||
Loading…
Reference in a new issue