diff --git a/CHANGELOG.md b/CHANGELOG.md index ae2c1e7e..49ab0632 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Fixed + +- Completion for `:RustLsp hover actions` command suggesting `action`. + ## [3.6.4] - 2023-11-19 ### Fixed diff --git a/lua/rustaceanvim/commands/init.lua b/lua/rustaceanvim/commands/init.lua index 492f7f02..9174f54a 100644 --- a/lua/rustaceanvim/commands/init.lua +++ b/lua/rustaceanvim/commands/init.lua @@ -131,7 +131,7 @@ function M.create_rust_lsp_command() return { 'last' } end if cmdline:match(match_start .. ' hover%s+%w*$') then - return { 'action', 'range' } + return { 'actions', 'range' } end if cmdline:match(match_start .. ' moveItem%s+%w*$') then return { 'up', 'down' }