欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

phpstorm多行快捷操作操作,筛选相似内容

程序员文章站 2022-03-13 13:56:10
...
  • 本文讲述,在phpstorm中,如何使用快捷键,把下面的代码中的字段名提取出来,放到数组的方括号中。
  1. $table->integer('user_id')->comment('创建者');
  2. $table->integer('category_id')->comment('分类');
  3. $table->string('title')->comment('标题');
  4. $table->string('description')->comment('描述');
  5. $table->integer('price')->comment('价格');
  6. $table->integer('stock')->comment('库存');
  7. $table->integer('sales')->default(0)->comment('销量');
  8. $table->string('cover')->comment('封面图');
  9. $table->json('pics')->nullable()->comment('小图集');
  10. $table->tinyInteger('is_on')->default(0)->comment('是否上架 0不上架 1上架');
  11. $table->tinyInteger('is_recommend')->default(0)->comment('是否推荐 0不推荐 1推荐');
  12. $table->text('details')->comment('详情');
  • 最后的效果
  1. [
  2. 'user_id',
  3. 'category_id',
  4. 'title',
  5. 'description',
  6. 'price',
  7. 'stock',
  8. 'sales',
  9. 'cover',
  10. 'pics',
  11. 'is_on',
  12. 'is_recommend',
  13. 'details',
  14. ]

操作如下

1 . 把光标放到第一个$之前,按住 alt+shift,同时按住鼠标左键,向下拖动。效果如下。

phpstorm多行快捷操作操作,筛选相似内容

2 . 按住shift+ctrl键,再点右向键->,随着点的次数增多,选中的范围不断扩大。直到选中每一行的第一个左括号。

phpstorm多行快捷操作操作,筛选相似内容

3 . 按del键删除选中部分。

phpstorm多行快捷操作操作,筛选相似内容

4 . 按ctrl键,再点右向键->,光标跳到第一个右括号前,放开ctrl键,输入逗号。

phpstorm多行快捷操作操作,筛选相似内容

5 . 按住shift键,点一下end键,选中剩余的部分。

phpstorm多行快捷操作操作,筛选相似内容

6 . 按del键删除选中部分。

phpstorm多行快捷操作操作,筛选相似内容

7 . 将所有内容选中,放入方括号。