Remove kak

This commit is contained in:
Austen Adler 2022-06-05 01:03:56 -04:00
parent f1e326fbd7
commit ec3c685a16

View File

@ -7,7 +7,6 @@
#![allow(clippy::struct_excessive_bools)] #![allow(clippy::struct_excessive_bools)]
mod errors; mod errors;
mod kak;
mod math_eval; mod math_eval;
mod shuf; mod shuf;
mod sort; mod sort;
@ -16,7 +15,6 @@ mod trim;
mod uniq; mod uniq;
mod xargs; mod xargs;
use clap::{Parser, Subcommand}; use clap::{Parser, Subcommand};
pub use kak::*;
use kakplugin::{display_message, get_var, KakError}; use kakplugin::{display_message, get_var, KakError};
#[derive(Parser, Debug)] #[derive(Parser, Debug)]