Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on:
push:
branches: [main]
pull_request:

# a UTF-8 locale with real collation tables: on macOS this is what makes
# awk's == collapse all Cyrillic letters (the trap mirror.awk works around);
# runners default to C/C.UTF-8 where that behavior would not reproduce
env:
LC_ALL: en_US.UTF-8

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make lint

test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install tmux
run: |
if [ "$RUNNER_OS" = "macOS" ]; then
brew install tmux
else
sudo apt-get update && sudo apt-get install -y tmux
fi
- run: make test
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# tmux-langmap

[![CI](https://github.com/lukashes/tmux-langmap/actions/workflows/ci.yml/badge.svg)](https://github.com/lukashes/tmux-langmap/actions/workflows/ci.yml)

Makes tmux bindings work from a Cyrillic keyboard layout, like Vim's
`langmap` option does for Vim. At load the plugin reads your current
bindings and duplicates each one onto the character the same physical key
Expand Down
Loading