about summary refs log tree commit diff
path: root/fnl/nvrc/packs
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-03-21 17:20:44 +0900
committersefidel <contact@sefidel.net>2024-03-21 17:20:44 +0900
commit504ee3009df78cfb7e225c8882e7826920c4fdca (patch)
tree9562484c7d0ed36529f9ab534560dce473eb812d /fnl/nvrc/packs
parent476441a0e45f032d43458572b3913ddde2969035 (diff)
downloadnvimrc-504ee3009df78cfb7e225c8882e7826920c4fdca.tar.gz
nvimrc-504ee3009df78cfb7e225c8882e7826920c4fdca.zip
feat(cmp)!: replace luasnip with native snippets
Diffstat (limited to 'fnl/nvrc/packs')
-rw-r--r--fnl/nvrc/packs/cmp.fnl7
1 files changed, 3 insertions, 4 deletions
diff --git a/fnl/nvrc/packs/cmp.fnl b/fnl/nvrc/packs/cmp.fnl
index b49a1c8..11595d1 100644
--- a/fnl/nvrc/packs/cmp.fnl
+++ b/fnl/nvrc/packs/cmp.fnl
@@ -8,7 +8,6 @@
         : select_prev_item} (require :cmp))
 (local under-compare (require :cmp-under-comparator))
 (local clangd-score (require :clangd_extensions.cmp_scores))
-(local luasnip (require :luasnip))
 
 (set! completeopt "menuone,noselect")
 
@@ -39,7 +38,7 @@
               :TypeParameter "(tp)"})
 
 (setup {:snippet {:expand (fn [args]
-                                ((. (require :luasnip) :lsp_expand) args.body))}
+                                (vim.snippet.expand args.body))}
             :formatting {:format (fn [entry vim-item]
                                    (set vim-item.kind
                                         (string.format "%s %s"
@@ -61,11 +60,11 @@
                                                                :select false}) [:i :c])
                       :<Tab> (mapping {:i (fn [fallback]
                                               (if (visible) (select_next_item)
-                                              (luasnip.expand_or_jumpable) (luasnip.expand_or_jump)
+                                              (vim.snippet.jumpable 1) (vim.snippet.jump 1)
                                               (fallback)))})
                       :<S-Tab> (mapping {:i (fn [fallback]
                                                   (if (visible) (select_next_item)
-                                                  (luasnip.jumpable -1) (luasnip.jump -1)
+                                                  (vim.snippet.jumpable -1) (vim.snippet.jump -1)
                                                   (fallback)))})}
             :sources [{:name :nvim_lsp}
                       {:name :nvim_lsp_signature_help}]