7

I need to select some lines inside of a list of file names to bring them at the end of the list.

Suppose I have Files.txt with this list:

filename1.aaa
filename1.bbb
filename1.ccc
filename2.aaa
filename2.bbb
filename2.ccc
filename3.aaa
filename3.bbb
filename3.ccc

I want to select all the lines where the file extension is ccc and then be able to CTRL-X and CTRL-V to put them on the bottom of the list. So the result have to be like this:

filename1.aaa
filename1.bbb
filename2.aaa
filename2.bbb
filename3.aaa
filename3.bbb
filename1.ccc
filename2.ccc
filename3.ccc

Is it possible?

4

2 回答 2

15

In Windows press:

  1. Ctrl+F for searching all ".ccc" terms in file;
  2. Ctrl+L to expand selection to line;
  3. Ctrl+X to cut all selected lines;
  4. End to go at the end of your file;
  5. Ctrl+V to past all selected line;

If you are using a Mac press Command instead of Ctrl.

This page could also help you: http://www.sublimetext.com/docs/selection

于 2013-09-13T10:18:18.350 回答
0

这在 Sublime 中非常简单,在其中一行上选择扩展名 .ccc,然后按 Alt+F3 选择该选定文本的所有其他匹配项。然后按 Ctrl+L 将选择扩展到整行,然后将这些行剪切并粘贴到其他地方。

于 2019-10-19T20:51:51.977 回答