Skip to content

feat: add tmux-like zoom (maximize) toggle for terminal (#23) #62

feat: add tmux-like zoom (maximize) toggle for terminal (#23)

feat: add tmux-like zoom (maximize) toggle for terminal (#23) #62

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
name: Vim (${{ matrix.vim_version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
vim_version: ['stable', 'nightly']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Vim (${{ matrix.vim_version }})
uses: rhysd/action-setup-vim@v1
with:
version: ${{ matrix.vim_version }}
- name: Clone Vader.vim
run: git clone --depth=1 https://github.com/junegunn/vader.vim.git /tmp/vader
- name: Run Vader tests
run: |
vim -u test/vimrc \
-c 'Vader! test/test_dispatch.vader' \
-c 'qall!' \
--not-a-term -e
env:
VADER_PATH: /tmp/vader