8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vim3Advent Calendar 2019

Day 1

Ubuntu 18.04.3 LTS でOSとVimのクリップボードを共有する方法

Posted at

ども、ゴリラです。

最近買ったThinkPadにUbuntuを入れて念願のLinuxマシンを使える状態にしましたが、
Vimのクリップボードレジスタを使えるようにするまで苦労したので、メモとして残します。
同じことで困っている方の助けになったら嬉しいです。

結論

UbuntuでVimをビルドするときはlibxmu-devをインストールした上で、--with-xオプションが必要です。

# 必要なライブラリ
sudo apt install libxmu-dev

# ビルド
./configure --with-x --enable-multibyte --enable-fail-if-missing && make && sudo make install

# ビルド終わったらちゃんと `+clipboard` になっているのを確認 
$ vim --version | grep clip
+clipboard         +keymap            +postscript        +vartabs
+eval              -mouse_jsbterm     -sun_workshop      +xterm_clipboard

8
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?