Configuration

This document describes the configuration options available to users of VimBindings.jl

To see all preferences and their settings, use preferences():

julia> VimBindings.Config.preferences()┌ Info: development_mode
│   value = false
└   default = false
┌ Info: system_clipboard
│   value = false
└   default = false

System Clipboard Integration

This option will enable copying and pasting with the system clipboard using y, p and P. It is not well tested, so it is disabled by default. Note that this does not enable "registers". To follow progress on the progress of the registers feature, see this issue

To enable integration with the system clipboard, run the following command.

VimBindings.Config.system_clipboard!(true) # then restart your REPL session

Check the status of the feature with system_clipboard():

julia> VimBindings.Config.system_clipboard()false

To disable the feature, run the following:

VimBindings.Config.system_clipboard!(false) # then restart your REPL session
Warning

The system clipboard integration is not well tested; Please share your experience with the feature on this github issue