From 8b5df38a1b57d1e6922cfa9ae57a0125dfc497e9 Mon Sep 17 00:00:00 2001 From: Jake Rogers Date: Sat, 31 Aug 2024 11:11:56 -0600 Subject: [PATCH 1/3] ci(hooks): bump commitizen-tools/commitizen from v3.27.0 to v3.29.0 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3ca8d9c..3766d6b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ default_install_hook_types: - commit-msg repos: - repo: https://github.com/commitizen-tools/commitizen - rev: e9aa5d979ea6fd14dcf59c6bd3836bef17d386c1 # frozen: v3.27.0 + rev: d7e01aa9b0cfe3c1b732e66d523bbd0656221127 # frozen: v3.29.0 hooks: - id: commitizen stages: From 8a6a7ac7b4af813fe53865de51bfb892e9864218 Mon Sep 17 00:00:00 2001 From: Jake Rogers Date: Sat, 31 Aug 2024 11:19:18 -0600 Subject: [PATCH 2/3] fix(tmux): bind home & end keys with correct escape sequence #30 --- tmux/tmux.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 7e81035..d9d94ae 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -18,6 +18,8 @@ set -g mode-keys emacs set -g status-keys emacs # BEGIN BINDINGS +bind -n Home send Escape "OH" +bind -n End send Escape "OF" bind -n M-Left select-pane -L bind -n M-Right select-pane -R bind -n M-Up select-pane -U From a14fc0fd04f9cf94d8aaf067f1e3df03587d4c3e Mon Sep 17 00:00:00 2001 From: Jake Rogers Date: Sat, 31 Aug 2024 11:23:40 -0600 Subject: [PATCH 3/3] =?UTF-8?q?bump:=20version=201.7.0=20=E2=86=92=201.7.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cz.yaml | 2 +- CHANGELOG.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.cz.yaml b/.cz.yaml index 65896b6..4f33a1f 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -9,5 +9,5 @@ commitizen: template: .cz.changelog.md.j2 update_changelog_on_bump: true use_shortcuts: true - version: 1.7.0 + version: 1.7.1 version_scheme: semver diff --git a/CHANGELOG.md b/CHANGELOG.md index b398d99..6727c3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.7.1 (2024-08-31) + +### Fix + +- **tmux**: bind home & end keys with correct escape sequence + ## v1.7.0 (2024-07-07) ### Feature