Home

Awesome

SketchyVim

This small project turns accessible(!) input fields on macOS into full vim buffers. It should behave and feel like native vim, because, under the hood I synchronize the text field with a real vim buffer.

demo

You can use all modes (even commandline etc.) and all commands included in vim.

It is also possible to load a custom svimrc file, which can contain custom vim configurations, e.g. remappings (see the examples folder).

Additionally, you can edit the blacklist file in the ~/.config/svim/ folder to manually exclude applications from being handled by svim. You will likely want to blacklist your terminal emulator and gvim, such that there is no conflict.

Every time the vim mode changes, or a commandline update is issued, the script svim.sh in the folder ~/.config/svim/ is executed where you can handle how you want to process this information. I have a small popup in my SketchyBar which shows me the command line output on demand for example.

(!): Accessible means, that the input field needs to conform to the accessibility standards for text input fields, else there is nothing we can do.

Installation

You can install this using brew from my tap:

brew tap FelixKratz/formulae
brew install svim

and then you can start the brew service using:

brew services start svim

where you will be asked to grant accessibility permissions.

You can change the macOS selection color to anything you like with this command (which is my green):

defaults write NSGlobalDomain AppleHighlightColor -string "0.615686 0.823529 0.454902"

Issues

Please tell me if you encounter issues.

Known Issues:

Contributions

Pull requests are welcome. If you improve the code for your own use, consider creating a pull request, such that all people (including me) can enjoy those improvements.

Credits