2

I'm using slimv to create a small common lisp project. I would like a way to jump to the definition of a function I defined in another file. Is there a way to do that?'

Held
  • 35

1 Answers1

3

Take a look at exuberant ctags. It supports lisp.

After you generate a tags file you can use <C-]> to jump to the definition. Take a look at :h tags

FDinoff
  • 1,871