Skip to content

Commit

Permalink
Merge pull request #123 from spaceotter/fix-libfn
Browse files Browse the repository at this point in the history
Re-evaluate `ccls-library-folders-fn`
  • Loading branch information
yyoncho authored Jan 24, 2024
2 parents dd33da8 + 9087862 commit 9b4a47e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ccls.el
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ DIRECTION can be \"D\", \"L\", \"R\" or \"U\"."
(lsp-ht ("$ccls/publishSkippedRanges" #'ccls--publish-skipped-ranges)
("$ccls/publishSemanticHighlight" #'ccls--publish-semantic-highlight))
:initialization-options (lambda () ccls-initialization-options)
:library-folders-fn ccls-library-folders-fn))
:library-folders-fn (lambda (&rest args)
(if ccls-library-folders-fn (apply ccls-library-folders-fn args)))))

(provide 'ccls)
;;; ccls.el ends here

0 comments on commit 9b4a47e

Please sign in to comment.