Created
September 27, 2025 09:46
-
-
Save fionn/5d12ca6e0e09710cb184ea953d3598b9 to your computer and use it in GitHub Desktop.
Search Kagi from Neovim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Very simple way to search Kagi from Neovim. | |
| -- Saving as a gist because I don't actually use it. | |
| vim.api.nvim_create_user_command("Kagi", function(q) | |
| vim.ui.open("https://kagi.com/search?q=" .. vim.uri_encode(q.args)) | |
| end, {nargs = 1, desc = "Search Kagi"}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment