1
0
Fork 0

[Feat] remove rust lib plugin

feature/custom-highlight-themes
Mist 2024-02-17 23:39:39 +08:00
parent 42831a4907
commit f193ebc7dc
2 changed files with 3 additions and 23 deletions

View File

@ -1,6 +1,5 @@
local codesnap = require("codesnap")
local foo = require("foo")
foo.say_hello("Mist")
vim.api.nvim_create_user_command("CodeSnap", function() end, {})
vim.api.nvim_create_user_command("CodeSnap", function()
codesnap.setup()
end, {})

View File

@ -1,19 +0,0 @@
use nvim_oxi as oxi;
use oxi::{print, Dictionary, Function, Result};
fn hello(arg: String) -> Result<String> {
Ok(format!("Hello {arg}"))
}
fn say_hello(arg: String) -> Result<()> {
print!("{:?}", hello(arg));
Ok(())
}
#[oxi::module]
fn foo() -> oxi::Result<Dictionary> {
Ok(Dictionary::from_iter([(
"say_hello",
Function::from_fn(say_hello),
)]))
}