Skip to content

v0.174.6

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 20 Feb 18:07
· 257 commits to main since this release
  • Fixed an issue where using zed: increase buffer font size and zed: decrease buffer font size commands would alter the user's settings.json file. Now, by default, using these commands will not alter your settings file, but you can opt into persistence by adding some of the following keybindings to your keybindings.json file:
    • "cmd-=": ["zed::IncreaseBufferFontSize", { "persist": true }]
    • "cmd-+": ["zed::IncreaseBufferFontSize", { "persist": true }]
    • "cmd--": ["zed::DecreaseBufferFontSize", { "persist": true }]
    • "cmd-0": ["zed::ResetBufferFontSize", { "persist": true }]