惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
S
Security @ Cisco Blogs
N
News and Events Feed by Topic
H
Hacker News: Front Page
Attack and Defense Labs
Attack and Defense Labs
S
Secure Thoughts
Microsoft Security Blog
Microsoft Security Blog
N
Netflix TechBlog - Medium
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
T
Threat Research - Cisco Blogs
Google Online Security Blog
Google Online Security Blog
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
T
Tenable Blog
博客园 - 叶小钗
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
量子位
P
Proofpoint News Feed
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Recorded Future
Recorded Future
The Register - Security
The Register - Security
F
Fortinet All Blogs
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
S
Schneier on Security
V
Vulnerabilities – Threatpost
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
GRAHAM CLULEY
G
Google Developers Blog
月光博客
月光博客
V
V2EX
T
Troy Hunt's Blog
A
Arctic Wolf

codeqihan的博客

现代化的开源终端-Tabby ChatGPT Atlas使用体验 联通宽带改桥接 Chrony安装以及配置 电信跨网QoS ungoogled-chromium浏览器简介 npm的高性能替代品pnpm 使用markdownlint-cli格式化Markdown文件 Nginx的安装以及配置 使用unattended-upgrades自动更新软件包 Debian使用Backports源 压缩网页体积 Debian切换至Testing/Sid版本 2024年度总结 轻量级的探针-Beszel ai.robots.txt阻止AI爬虫 甲骨文圣何塞ARM测评 公共DOH收集 com又涨价了
基于Rust开发的编辑器-Edit
codeqihan · 2026-02-05 · via codeqihan的博客

Edit是什么?

Edit是微软基于Rust开发的一款轻量级跨平台文本编辑器,体积小、启动速度快,支持多文件切换和鼠标操作,面向终端用户的快速编辑需求,同时致敬经典的MS-DOS Editor,并提供现代化的输入控制体验。
Edit最新版本的Windows二进制文件不到270KB,Linux则更小,非常轻量。同时国际化做的也很好,原生支持中文(需要系统语言是中文,Edit本身不支持手动切换语言)

GitHub仓库:https://github.com/microsoft/edit


如何安装它?

Windows可以直接从Release页面下载并安装,也可以用winget安装:

1
winget install Microsoft.Edit

macOS可以使用Homebrew安装:

1
brew install msedit

对于Ubuntu,可以使用snap安装:

1
sudo snap install msedit

对于Debian,目前Edit还没有进入Debian软件仓库,因此只能手动进行安装
Release页面下载对应架构的二进制文件压缩包并解压,之后将其放到 /usr/local/bin/目录中,给文件添加可执行权限即可:

1
chmod -x /usr/local/bin/edit

评论