My configuration files for Debian/Ubuntu applications
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

4 лет назад
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Changelog
  2. ### master
  3. - upgrade to new version of `tmux-test`
  4. - bug: when using `emacs` copy mode, Enter does not quit screen after tpm
  5. installation/update. Fix by making `Escape` the key for emacs mode.
  6. - add a doc with troubleshooting instructions
  7. - add `.gitattributes` file that forces linefeed characters (classic `\n`) as
  8. line endings - helps with misconfigured git on windows/cygwin
  9. - readme update: announce Cygwin support
  10. - un-deprecate old plugin definition syntax: `set -g @tpm_plugins`
  11. ### v3.0.0, 2015-08-03
  12. - refactor `shared_set_tpm_path_constant` function
  13. - move all instructions to `docs/` dir
  14. - add `bin/install_plugins` cli executable script
  15. - improved test runner function
  16. - switch to using [tmux-test](https://github.com/tmux-plugins/tmux-test)
  17. framework
  18. - add `bin/update_plugins` cli executable script
  19. - refactor test `expect` scripts, make them simpler and ensure they properly
  20. assert expectations
  21. - refactor code that sets 'TMUX_PLUGIN_MANAGER_PATH' global env var
  22. - stop using global variable for 'tpm path'
  23. - support defining plugins via `set -g @plugin` in sourced files as well
  24. ### v2.0.0, 2015-07-07
  25. - enable overriding default key bindings
  26. - start using `C-c` to clear screen
  27. - add uninstall/clean procedure and keybinding (prefix+alt+u) (@chilicuil)
  28. - add new `set @plugin 'repo'` plugin definition syntax (@chilicuil)
  29. - revert back to using `-g` flag in new plugin definition syntax
  30. - permit leading whitespace with new plugin definition syntax (thanks @chilicuil)
  31. - make sure `TMUX_PLUGIN_MANAGER_PATH` always has trailng slash
  32. - ensure old/deprecated plugin syntax `set -g @tpm_plugins` works alongside new
  33. `set -g @plugin` syntax
  34. ### v1.2.2, 2015-02-08
  35. - set GIT_TERMINAL_PROMPT=0 when doing `git clone`, `pull` or `submodule update`
  36. to ensure git does not prompt for username/password in any case
  37. ### v1.2.1, 2014-11-21
  38. - change the way plugin name is expanded. It now uses the http username
  39. and password by default, like this: `https://git::@github.com/`. This prevents
  40. username and password prompt (and subsequently tmux install hanging) with old
  41. git versions. Fixes #7.
  42. ### v1.2.0, 2014-11-20
  43. - refactor tests so they can be used on travis
  44. - add travis.yml, add travis badge to the readme
  45. ### v1.1.0, 2014-11-19
  46. - if the plugin is not downloaded do not source it
  47. - remove `PLUGINS.md`, an obsolete list of plugins
  48. - update readme with instructions about uninstalling plugins
  49. - tilde char and `$HOME` in `TMUX_SHARED_MANAGER_PATH` couldn't be used because
  50. they are just plain strings. Fixing the problem by manually expanding them.
  51. - bugfix: fragile `*.tmux` file globbing (@majutsushi)
  52. ### v1.0.0, 2014-08-05
  53. - update readme because of github organization change to
  54. [tmux-plugins](https://github.com/tmux-plugins)
  55. - update tests to pass
  56. - update README to suggest different first plugin
  57. - update list of plugins in the README
  58. - remove README 'about' section
  59. - move key binding to the main file. Delete `key_binding.sh`.
  60. - rename `display_message` -> `echo_message`
  61. - installing plugins installs just new plugins. Already installed plugins aren't
  62. updated.
  63. - add 'update plugin' binding and functionality
  64. - add test for updating a plugin
  65. ### v0.0.2, 2014-07-17
  66. - run all *.tmux plugin files as executables
  67. - fix all redirects to /dev/null
  68. - fix bug: TPM shared path is created before sync (cloning plugins from github
  69. is done)
  70. - add test suite running in Vagrant
  71. - add Tmux version check. `TPM` won't run if Tmux version is less than 1.9.
  72. ### v0.0.1, 2014-05-21
  73. - get TPM up and running