红联Linux门户
Linux帮助

安装使用Micro-基于终端的文本编辑器

发布时间:2016-09-08 15:05:45来源:topspeedsnail.com作者:斗大的熊猫
Micro是使用Go开发一款基于终端命令行的文本编辑器。它直观、易用,比Vim要简单的多。Micro是跨平台的应用,支持Linux、Mac OS X和Windows系统。
Micro的源代码:https://github.com/zyedidia/micro
 
Micro is a terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the full capabilities of modern terminals. It comes as one single, batteries-included, static binary with no dependencies, and you can download and use it right now.
 
主要特性:
支持快捷键
支持鼠标
语法高亮
搜索和替换
撤销和重做
Unicode 支持
 
安装Micro:
下载对应的二进制包安装:https://github.com/zyedidia/micro/releases
或从源码编译安装:首先安装Go(Ubuntu/CentOS 安装 Go[//m.ajphoenix.com/linux/23988.html])
# Ubuntu
$ sudo apt-get install xclip build-essential git
$ git clone https://github.com/zyedidia/micro
$ cd micro
$ make
$ sudo mv micro /usr/bin/
 
使用Micro
编辑文件:
$ micro test.c
$ micro
$ ifconfig | micro
安装使用Micro-基于终端的文本编辑器
Ctrl+G 查看帮助
Ctrl+S 保存
Ctrl+Q 退出
可以使用鼠标定位/选择文本
Ctrl+C 复制选定的文本
Ctrl+V 粘贴
Ctrl+X 剪切
 
本文永久更新地址://m.ajphoenix.com/linux/23989.html