gitui icon indicating copy to clipboard operation
gitui copied to clipboard

Make file preview scrollable

Open TD-Sky opened this issue 9 months ago • 2 comments

This Pull Request fixes/closes #2205.

It changes the following:

  • New config item seek_up,seek_down in key_bindings.ron.
  • Enable scrolling file preview without entering file.

I followed the checklist:

  • [ ] I added unittests
  • [ ] I ran make check without errors
  • [ ] I tested the overall application
  • [ ] I added an appropriate item to the changelog

TD-Sky avatar Apr 27 '24 11:04 TD-Sky

I have made the file previews scrollable in Files [3]. My purpose is gitui can scroll file without entering in all tabs.

TD-Sky avatar Apr 29 '24 04:04 TD-Sky

The recommended config for vim key bindings:

    seek_up: Some(( code: Char('k'), modifiers: "ALT")),
    seek_down: Some(( code: Char('j'), modifiers: "ALT")),

TD-Sky avatar Jun 10 '24 13:06 TD-Sky