From 4396249bfd7b299b17d4c3e056803483fdcc039d Mon Sep 17 00:00:00 2001 From: DefaultGen Date: Sun, 9 Jun 2024 15:33:37 -0400 Subject: Removed cursed search function --- lua/simple-denote.lua | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lua/simple-denote.lua') diff --git a/lua/simple-denote.lua b/lua/simple-denote.lua index 12ba1f6..403a5ac 100644 --- a/lua/simple-denote.lua +++ b/lua/simple-denote.lua @@ -2,7 +2,6 @@ local M = {} local config = require("simple-denote.config") local api = require("simple-denote.api") -local search = require ("simple-denote.search") function M.load_cmd(options) vim.api.nvim_create_user_command("Denote", function(opts) @@ -14,10 +13,6 @@ function M.load_cmd(options) api.tag(options) elseif opts.fargs[1] == "signature" then api.signature(options) - elseif opts.fargs[1] == "search" then - search.search(options) - elseif opts.fargs[1] == "test" then - search.test() else error("Unsupported operation " .. opts.fargs[1]) end -- cgit v1.2.3