Sublime Text的多行列操作

Sublime Text是个非常好用的文本编辑器。操作如丝般顺滑,功能强大,速度飞快。

这里是Sublime Text的一个简单操作。适用Sublime Text2/3

如题:

1
2
3
4
5
6
7
8
9
10
{ img="xpk(main:image/face/f000.png)", code="呲牙" };
{ img="xpk(main:image/face/f001.png)", code="调皮" };
{ img="xpk(main:image/face/f002.png)", code="流汗" };
{ img="xpk(main:image/face/f003.png)", code="偷笑" };
{ img="xpk(main:image/face/f004.png)", code="再见" };
{ img="xpk(main:image/face/f005.png)", code="敲打" };
{ img="xpk(main:image/face/f006.png)", code="擦汗" };
{ img="xpk(main:image/face/f007.png)", code="猪头" };
{ img="xpk(main:image/face/f008.png)", code="玫瑰" };
{ img="xpk(main:image/face/f009.png)", code="流泪" };

这么一段代码,我想保留一个基本的对应表,形如:f008–玫瑰 。

Sublime可以优雅的解决这个。

  1. Ctrl+A 全选

  2. Ctrl+Shift+L 多行操作

  3. 左右移动,和操作一行一样的同时操作多行。当然,记得活用home end按钮。