Go to file
daa84 1c4e43a26c Implement external popup menu
As solution have some restrictions - it disabled by default
2017-04-19 11:40:53 +03:00
desktop Icons, again... 2017-04-02 20:45:00 +03:00
screenshots Update screenshot 2017-03-09 23:48:41 +03:00
src Implement external popup menu 2017-04-19 11:40:53 +03:00
.gitignore Initial gtk ui 2016-03-16 17:39:53 +03:00
Cargo.lock Add key logging facility 2017-04-03 14:17:06 +03:00
Cargo.toml Add key logging facility 2017-04-03 14:17:06 +03:00
LICENSE Initial commit 2016-06-27 17:43:25 +03:00
Makefile Try to make icons work 2017-04-02 21:08:10 +03:00
README.md Implement external popup menu 2017-04-19 11:40:53 +03:00
build.rs Add cursor 2016-05-03 20:25:52 +03:00
rustfmt.toml rustfmt.toml 2017-02-26 22:34:08 +03:00

README.md

neovim-gtk

GTK ui for neovim written in rust using gtk-rs bindings.

Screenshot

Main Window

Font settings

By default gnome settings are used:

gsettings get org.gnome.desktop.interface monospace-font-name

To setup font add next line to ginit.vim

call rpcnotify(1, 'Gui', 'Font', 'DejaVu Sans Mono 12')

Command line

  • pass nvim custom execution path (by default used nvim command)
cargo run -- --nvim-bin-path=E:\Neovim\bin\nvim.exe
  • enable external popup menu autocompletion menu (this function a bit limited, so disabled by default)
cargo run -- --enable-external-popup

Build

Linux

Install GTK development packages. Install latest rust compiler, better use rustup tool. Build command:

cargo build --release

Windows

Neovim-gtk can be compiled using MSYS2 GTK packages. In this case use 'windows-gnu' rust toolchain.

SET PKG_CONFIG_PATH=C:\msys64\mingw64\lib\pkgconfig
cargo build --release