tmuxPlugins.better-mouse-mode: init at 2021-08-02

[tmux-better-mouse-mode](https://github.com/NHDaly/tmux-better-mouse-mode) is a tmux plugin to
better manage the mouse

it emulates mouse support for full-screen programs like `less` which don't provide mouse support

it exits copy mode and returns you to the prompt by scolling back all the down to the bottom

it adjusts scrolling speed

intended for tmux versions 2.1 and later
This commit is contained in:
Chris Pickard 2021-08-02 12:55:31 -04:00
parent 70e001f35c
commit f27dd09ec1
2 changed files with 32 additions and 0 deletions

View file

@ -1905,6 +1905,12 @@
githubId = 811527;
name = "Christopher Jefferson";
};
chrispickard = {
email = "chrispickard9@gmail.com";
github = "chrispickard";
githubId = 1438690;
name = "Chris Pickard";
};
chrisrosset = {
email = "chris@rosset.org.uk";
github = "chrisrosset";

View file

@ -63,6 +63,32 @@ in rec {
};
};
better-mouse-mode = mkTmuxPlugin {
pluginName = "better-mouse-mode";
version = "unstable-2021-08-02";
src = fetchFromGitHub {
owner = "NHDaly";
repo = "tmux-better-mouse-mode";
rev = "aa59077c635ab21b251bd8cb4dc24c415e64a58e";
sha256 = "06346ih3hzwszhkj25g4xv5av7292s6sdbrdpx39p0n3kgf5mwww";
};
meta = {
homepage = "https://github.com/NHDaly/tmux-better-mouse-mode";
description = "better mouse support for tmux";
longDescription =
''
Features:
* Emulate mouse-support for full-screen programs like less that don't provide built in mouse support.
* Exit copy-mode and return to your prompt by scrolling back all the way down to the bottom.
* Adjust your scrolling speed.
'';
license = lib.licenses.mit;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ chrispickard ];
};
};
continuum = mkTmuxPlugin {
pluginName = "continuum";
version = "unstable-2020-10-16";