Releases: pteroctopus/faster.nvim
Releases · pteroctopus/faster.nvim
Release - Version 0.1.0
This initial release introduces functionalities aimed at selectively disabling features when handling large files or executing macros. Several adjustments and fixes have been applied since the plugin's initial publication, leading up to this release.
Features
- Selective Feature Disabling: Users can now define
extra_patterns
along with autocmd patterns and file sizes to specify when bigfile behavior should apply. For instance, triggering the behavior for "*.md" files at 1MiB size, while applying it to all other ("*") files at 2MB.
Changes
- Rounded Buffer Size: The file size of buffers is now rounded to the first decimal point (e.g., 1.1MiB instead of 1MiB). This enhancement enables the use of decimal file sizes in bigfile filesize configurations (e.g., 0.5 or 1.2).
Fixes
- Plugin Loading and Configuration Override: Corrected issues related to plugin loading and configuration override, ensuring proper functionality.