1 2 3 4 5 6 7 8
// SPDX-License-Identifier: MIT /// Code action provider (quick fixes and refactors). pub mod code_actions; /// Full-document formatter. pub mod formatter; /// On-type formatting (auto-indent and similar triggers). pub mod on_type_formatting;