summary refs log tree commit diff
path: root/.vim/snippets/cmake.lua
diff options
context:
space:
mode:
Diffstat (limited to '.vim/snippets/cmake.lua')
-rw-r--r--.vim/snippets/cmake.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/.vim/snippets/cmake.lua b/.vim/snippets/cmake.lua
deleted file mode 100644
index 946fab7..0000000
--- a/.vim/snippets/cmake.lua
+++ /dev/null
@@ -1,26 +0,0 @@
----@diagnostic disable: undefined-global
-return {
-  s(
-    { trig = 'debugvar', desc = 'cmake_print_variables' },
-    fmt(
-      [=[
-      include(CMakePrintHelpers)
-      cmake_print_variables({})
-    ]=],
-      { i(1) }
-    )
-  ),
-  s(
-    { trig = 'debugprop', desc = 'cmake_print_properties' },
-    fmt(
-      [=[
-      include(CMakePrintHelpers)
-      cmake_print_properties(
-          TARGETS {}
-          PROPERTIES {}
-      )
-    ]=],
-      { i(1), i(2) }
-    )
-  ),
-}