A JavaFX component which allows a user to enter multiple lines of plain text,
using Vim commands, backed by an embedded Neovim process.
NeovimPane
works seamlessly with JavaFX, and can be manipulated in code or
with FXML.
This component was created using Clojure. neovim-client is used to interact with the neovim process using Neovim's RPC API.
You'll need the Neovim binary nvim
on your path to use any of the
components included.
This project uses Clojure CLI and
deps.edn. Some of the sample code
below assumes you've got the clj
binary on your path.
{:deps
{github-jebberjeb/neovim-javafx
{:git/url "https://github.com/jebberjeb/neovim-javafx" :sha "..."}}}
TODO publish to clojars
TODO
TODO
(ns neovim-javafx.test-ui
"This namespace contains a simple UI to test NeovimPane."
(:import
(javafx.application Platform)
(javafx.scene Scene)
(javafx.stage Stage))
(:require [neovim-javafx.util :refer [later]]))
(javafx.embed.swing.JFXPanel.)
(javafx.application.Platform/setImplicitExit false)
(later
#(doto (Stage.)
(.setScene (Scene. (neovim_javafx.NeovimPane.)))
(.show)))
<?xml version="1.0" encoding="UTF-8"?>
<?language javascript?>
<?import javafx.scene.layout.VBox?>
<?import neovim_javafx.NeovimPane?>
<VBox ...>
<children>
<NeovimPane .../>
</children>
</VBox>
package neovim_javafx;
import javafx.application.Platform;
import javafx.scene.Scene;
import javafx.stage.Stage;
import javafx.embed.swing.JFXPanel;
public class NeovimPaneTest {
public static void main(String[] args) {
new JFXPanel();
Platform.setImplicitExit(false);
Platform.runLater(
new Runnable() {
public void run() {
try {
NeovimPane npane = new NeovimPane();
Scene scene = new Scene(npane);
Stage stage = new Stage();
stage.setScene(scene);
stage.show();
} catch (Throwable t) {
t.printStackTrace();
}
}
});
}
}
To build the Java sample:
$> mkdir classes
$> clj -e "(require '[neovim-javafx.dev :as dev]) (dev/generate-classes)"
To run the Java sample:
$> javac -cp $(clj -Spath -C:test) test/neovim_javafx/*.java -d classes
$> java -cp $(clj -Spath -C:test) neovim_javafx.NeovimPaneTest
To build and run the Clojure sample:
$> clj -C:test -e "(require '[neovim-javafx.test-ui :refer [ui]) (ui)"
The MIT License (MIT)
Copyright (c) 2018 Jeb Beich
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.