15 lines
448 B
VimL
15 lines
448 B
VimL
" Title: ACM sourcer
|
|
" Description: Search for a selected text block for results in the ACM
|
|
" library
|
|
" Last Change: Tue 17 Sep 2024 09:48:30 CEST
|
|
" Maintainer: Yannick Reiss <yannick.reiss@nickr.eu>
|
|
|
|
" Avoid loading the plugin multiple times
|
|
if exists("g:loaded_sourcer")
|
|
finish
|
|
endif
|
|
let g:loaded_sourcer = 1
|
|
|
|
" Exposes the plugin's functions for use as commands in Neovim.
|
|
command! -nargs=0 Lookup lua require("sourcer").lookup()
|