项目作者: ahmedrmusa

项目描述 :
How to custom compile Vim to include xterm_clipboard support.
高级语言:
项目地址: git://github.com/ahmedrmusa/vim--with-x.git
创建时间: 2020-07-13T13:10:02Z
项目社区:https://github.com/ahmedrmusa/vim--with-x

开源协议:

下载


Configure Vim —with-x


Compiling a custom vim to support +xterm_clipboard support for Unix systems.
This will include (vim --version)

  1. +client-server
  2. +clipboard
  3. +X11
  4. +xterm_clipboard
  5. +etc...

1. Uninstall /usr/local/bin/vim

If you have Homebrew installed

brew uninstall vim

Run brew doctor to check for any issues.

If not consider installing homebrew.

Do Not Remove/usr/bin/vim

2. Clone the latest vim repo

  1. git clone https://github.com/vim/vim.git && cd /vim

3. Configuration flags:

Use —disable-darwin incase of “Quickdraw.h error”.

For more options : less vim/src/feature.h , :help feature-list or Vim Docs.

Example : --with-features=huge : Includes the most features

  1. ./configure --with-x

4. Installing our configured vim

  1. sudo make & make install

5. Run the right vim

Verify:
which vim outputs: /usr/local/bin/vim

If not:
Adding the following snipet to your ~/.zshrc or ~/.bashrc will allow echo $PATH variable to locate vim from /usr/local/bin/ not /usr/bin/

  1. export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$PATH"

Re-launch Terminal

To verify :

type -a vim should locate dirs of all vim instances

  1. vim is /usr/local/bin/vim
  2. vim is /usr/bin/vim

which vim should locate our installed vim in

  1. /usr/local/bin/vim

! TO UNINSTALL VIM !

  1. make uninstall

X11 Support

Server-side

  • xauth program
  • /etc/ssh/ssh_config contains ForwardX11 yes

Client-side (Unix)

  • XQuartz.app installed
  • ~/.ssh/config contains
    1. Host *
    2. ForwardX11 yes

    This will allow running graphical applications remotely without the need to add -X

To verify :

  1. ssh user@hostname & xterm

This will open the server’s graphical terminal. If not consult ssh docs & x docs.

Configure clipboard

Server & Client

  • vim --version supports +xterm_clipboard

Client-side (Unix)

The unnamed "*" & unnamedplus "+" register will sync to system clipboard for MacOS and Windows.
While the unnamedplus "+" register will sync to linux system clipboard and the other “selection” clipboard is mapped to unnamed "*".
To use cross-platform vim’s system clipboard and “selection” clipboard, edit server-side and client-side .vimrc to include :

  1. set clipboard^=unnamed,unnamedplus

This setting sets ‘clipboard’ option to prepend the “string” values.

Copy/Paste

  • Ctrl+C in other programs
  • p to all vim platforms.
  • y yank in Vim
  • Ctrl+V in other programs on all platforms.