diff autoload/dbtables.vim @ 0:238b45cc333b

Initial Commit
author Luka Sitas <lsitas@avatarasoftware.com>
date Tue, 10 Mar 2026 20:25:15 -0400
parents
children 8530ebeda72c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/autoload/dbtables.vim	Tue Mar 10 20:25:15 2026 -0400
@@ -0,0 +1,10 @@
+" autoload/dbtables.vim
+" Functions are loaded on demand
+
+if exists('*dbtables#greet')
+  finish
+endif
+
+function! dbtables#greet() abort
+  echo g:dbtables_greeting
+endfunction