File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,20 @@ All notable changes to this project will be documented in this file.
66The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
77and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
88
9- ## [ Unreleased ]
9+ ## [ 4.9.0 ] - 2024-02-23
1010
1111### Added
1212
1313- Nix: ` codelldb ` adapter package (without the vscode extension)
1414 as a nixpkgs overlay and a flake output.
1515
16+ ### Reverted
17+
18+ - Don't run ` ftplugin/rust.lua ` more than once on the same
19+ buffer.
20+ This prevented the client from reattaching when running
21+ ` :e ` on a buffer [[ #250 ] ( https://github.com/mrcjkb/rustaceanvim/issues/250 )] .
22+
1623## [ 4.8.0] - 2024-02-20
1724
1825### Added
Original file line number Diff line number Diff line change 1- local bufnr = vim .api .nvim_get_current_buf ()
2- if vim .b [bufnr ].did_rustaceanvim_ftplugin then
3- return
4- end
5-
61--- @type RustaceanConfig
72local config = require (' rustaceanvim.config.internal' )
83local types = require (' rustaceanvim.types.internal' )
@@ -57,5 +52,3 @@ if not auto_attach then
5752end
5853
5954lsp .start ()
60-
61- vim .b [bufnr ].did_rustaceanvim_ftplugin = true
You can’t perform that action at this time.
0 commit comments