Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wincent/terminus
🖥 Enhanced terminal integration for Vim
https://github.com/wincent/terminus
tmux vim
Last synced: 6 days ago
JSON representation
🖥 Enhanced terminal integration for Vim
- Host: GitHub
- URL: https://github.com/wincent/terminus
- Owner: wincent
- License: bsd-2-clause
- Created: 2015-07-06T04:17:14.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-07-30T10:00:50.000Z (5 months ago)
- Last Synced: 2024-12-14T11:08:10.121Z (13 days ago)
- Topics: tmux, vim
- Language: Vim Script
- Homepage:
- Size: 2.7 MB
- Stars: 464
- Watchers: 11
- Forks: 25
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Terminus
Terminus enhances Vim's and Neovim's integration with the terminal in four ways, particularly when using [tmux](https://tmux.github.io/) and [iTerm](https://www.iterm2.com/) or [KDE Konsole](https://konsole.kde.org/), closing the gap between terminal and GUI Vim:
## Cursor shape change in insert and replace mode
In insert mode, the cursor shape changes to a thin vertical bar. In replace mode, it changes to an underline. On returning to normal mode, it reverts to the standard "block" shape. Configuration options are provided to select among the different shapes.
## Improved mouse support
Activates `'mouse'` support in all modes and additionally tries to activate `sgr-mouse` support, which allows the mouse to work "even in columns beyond 223".
## Focus reporting
Allows Vim to receive `FocusGained` and `FocusLost` events, even in the terminal and inside tmux. This is in turn used to fire the `:checktime` command, which, in conjunction with the `'autoread'`, allows Vim to automatically pick up changes made by other processes when switching to and from Vim.
## "Bracketed Paste" mode
Sets up "Bracketed Paste" mode, which means you can forget about manually setting the `'paste'` option and simply go ahead and paste in any mode.
---
For more information, see [the documentation](https://github.com/wincent/terminus/blob/main/doc/terminus.txt).