Merge pull request #132437 from chrispickard/master
tmuxPlugins.better-mouse-mode: init at 2021-08-02
This commit is contained in:
commit
03dc9d9b05
2 changed files with 32 additions and 0 deletions
|
@ -1911,6 +1911,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";
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue