diff options
| author | DefaultGen <gravel.justness270@slmail.me> | 2024-06-09 15:33:37 -0400 |
|---|---|---|
| committer | DefaultGen <gravel.justness270@slmail.me> | 2024-06-09 15:33:37 -0400 |
| commit | 4396249bfd7b299b17d4c3e056803483fdcc039d (patch) | |
| tree | 9cadabe787a415cd3d417bf463093398a24c7daf /lua/simple-denote.lua | |
| parent | 38738a6527d2d571d149bda36e74bdb9e2f0743c (diff) | |
| download | simple-denote.nvim-4396249bfd7b299b17d4c3e056803483fdcc039d.tar.gz | |
Removed cursed search function
Diffstat (limited to 'lua/simple-denote.lua')
| -rw-r--r-- | lua/simple-denote.lua | 5 |
1 files changed, 0 insertions, 5 deletions
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 |
