Commit Graph

363 Commits

Author SHA1 Message Date
Jorge Morante 695bbc7b3e small changes in tmux-next send-keys breaking change 2017-04-12 08:37:18 +02:00
Ferran Basora 0325e70e3c Remove actions 2017-04-11 10:08:56 +00:00
Ferran Basora b25d08d25e New bindings for tmux 2.3 2017-04-10 19:32:33 +02:00
Jorge Morante 7d89dbf40f updated CHANGELOG.md 2017-04-09 20:32:40 +02:00
Jorge Morante e669ed1850 improving health cheack and adding at least gawk 4 2017-04-09 20:31:21 +02:00
Jorge Morante a604664af7 add newest gawk to ubuntu provisioning 2017-04-09 13:33:43 +02:00
Jorge Morante 85f8f9ec64 updated CHANGELOG.md 2017-04-07 09:27:29 +02:00
Jorge Morante 0c9bf307a9 add version to help screen 2017-04-07 09:26:04 +02:00
Jorge Morante e3a2bccabd add gawk to BSD provisioning 2017-04-07 09:22:34 +02:00
Jorge Morante 45a99c8823 better formatting in health check 2017-04-07 08:34:06 +02:00
Jorge Morante f41464ca71 add docs and docs link 2017-04-07 08:30:17 +02:00
Jorge Morante 2f0487280d gawk all the things 2017-04-07 08:29:57 +02:00
Jorge Morante a5daac5e48 initial health check implementation 2017-04-07 08:29:51 +02:00
Jorge Morante ba6db34ea5 updated CHANGELOG.md 2017-02-14 08:30:31 +01:00
Jorge Morante ff2e8cc891 fixed support for fish ><((o> 2017-02-14 08:29:42 +01:00
Jorge Morante 68c5659415 updated CHANGELOG.md 2017-02-07 21:39:19 +01:00
Jacob Keller fe35e519ea support variable length sha1 commit ids
The sha1 commit ids displayed by git may range in size and are not strictly 7 digits or 40 digits. In practice, the old default was something like 7, and that was enough to uniquely distinguish the commit. However, some repositories (Upstream Linux kernel) now use 12 as the default.

When we support intervals, use them to specify the full range to make the hint grab all available characters.
2017-02-06 11:22:22 -08:00
Jorge Morante d4f086de29 updated CHANGELOG.md 2016-12-09 17:08:12 +01:00
Jorge Morante 8c7933cbb1 properly fix bash_history bug, locking window name 2016-12-09 17:07:54 +01:00
Jorge Morante 42197d7d93 updated CHANGELOG.md 2016-12-03 19:19:26 +01:00
Jorge Morante b3653a0071 Revert "don't pollute .bash_history"
This reverts commit f9e59c1ce1.
2016-12-03 19:18:15 +01:00
Jorge Morante ba24c4566a Revert "Revert "properly delete all tmp files""
This reverts commit 2e58dfb404.
2016-12-03 19:17:58 +01:00
Jorge Morante 0ec23a189c updated CHANGELOG.md 2016-12-03 19:15:37 +01:00
Jorge Morante 2e58dfb404 Revert "properly delete all tmp files"
This reverts commit 191bac7dff.
2016-12-03 19:14:25 +01:00
Jorge Morante 42a56e7544 updated CHANGELOG.md 2016-12-03 18:06:17 +01:00
Jorge Morante 191bac7dff properly delete all tmp files 2016-12-03 18:02:16 +01:00
Jorge Morante f9e59c1ce1 don't pollute .bash_history 2016-12-03 17:28:04 +01:00
Jorge Morante 7c8356dc07 Merge branch 'morantron/unique-hints' 2016-10-25 08:07:47 +02:00
Jorge Morante f48ed0a471 updated CHANGELOG.md 2016-10-25 08:05:49 +02:00
Jorge Morante 889f334b6e fix specs 2016-10-25 08:01:30 +02:00
Morantron 8e67f830a7 Merge pull request #14 from sunaku/indentation
indentation: fix awful mixture of tabs and spaces
2016-10-23 08:39:22 +02:00
Suraj N. Kurapati 87defe90ad update expected hint labels in tests accordingly 2016-10-22 13:04:14 -07:00
Suraj N. Kurapati b10ea7791c hinter: use same hint for all occurrences of match
This patch changes the hinter to use the same hint for all occurrences
of a match, thereby reducing the need to use multi-character hints and
also eliminating redundant hints to simplify the user's hint decision.
2016-10-22 12:51:42 -07:00
Suraj N. Kurapati ca1db9af26 indentation: fix awful mixture of tabs and spaces 2016-10-22 10:28:40 -07:00
Jorge Morante c47eb0cf4a updated CHANGELOG.md 2016-10-22 11:16:47 +02:00
Jorge Morante 14e067cb41 adding tests for custom-patterns 2016-10-22 11:15:17 +02:00
Suraj N. Kurapati 208b63acc7 fingers-pattern-N settings with N > 9 were ignored
This patch fixes the regular expression that parses `fingers-pattern-N`
settings, allowing the `N` number to contain either one or more digits.

Before this patch:

    $ (echo '@fingers-pattern-0 "git rebase --(abort|continue)"'; echo '@fingers-pattern-1 "yolo"'; echo '@fingers-pattern-50 "whatever"') | grep '^@fingers-pattern' | sed 's/^@fingers-pattern-[0-9] "\(.*\)"$/(\1)/'
    (git rebase --(abort|continue))
    (yolo)
    @fingers-pattern-50 "whatever"

After this patch:

    $ (echo '@fingers-pattern-0 "git rebase --(abort|continue)"'; echo '@fingers-pattern-1 "yolo"'; echo '@fingers-pattern-50 "whatever"') | sed -n 's/^@fingers-pattern-[0-9]\{1,\} "\(.*\)"$/(\1)/p'
    (git rebase --(abort|continue))
    (yolo)
    (whatever)
2016-10-21 13:28:24 -07:00
Jorge Morante 58dbd5ea18 fix dislexia 2016-10-17 23:51:50 +02:00
Jorge Morante 7fc1d923db update CHANGELOG.md 2016-10-17 23:49:59 +02:00
Jorge Morante 87254fd5c3 update README.md 2016-10-17 23:43:52 +02:00
Jorge Morante 3b3fcdf0b5 force terminal resolution when running tests 2016-10-17 23:42:39 +02:00
Jorge Morante 5aec2d98cf remove log traces 2016-10-17 23:16:10 +02:00
Jorge Morante babd4095f7 fix tests the lazy way ™️ 2016-10-17 23:15:06 +02:00
Jorge Morante 6b67ce92df add help screen and hack input a little bit 2016-10-17 23:15:06 +02:00
Jorge Morante 3abca2a0ff read default compact state from configuration 2016-10-17 23:15:06 +02:00
Jorge Morante 7faf361f68 performance boost by spawning bash withouth rc/profile 2016-10-17 23:15:06 +02:00
Jorge Morante c5353288f1 updating README.md 2016-10-17 23:15:06 +02:00
Jorge Morante d257428cea space a bit uncollapsed hints 2016-10-17 23:15:06 +02:00
Jorge Morante dcf65b7b7e toggle collapsed hints by pressing <space> 2016-10-17 23:15:06 +02:00
Jorge Morante b05b723165 properly yank shite 2016-10-17 23:15:06 +02:00