zoukankan      html  css  js  c++  java
  • vim yank 命令

    vim yank 命令

    vim yank 命令

    1 vi 标识着我年轻

    那是我年轻时候,深深地着迷于vi的速度。

    那时候觉得太酷了。所以每当用起vi,就能想到那段坚苦光辉的岁月。

    2 vi yank

    
    # 复制一个区域的内容
    :81, 109y

    If you ever need to cut/copy/delete/paste lines without knowing the actual number of lines, here is what you should do.

    In normal mode, go to the beginning of the section that you want to yank.

    Type mk to mark this spot as k.

    Go to the end of the section you want to yank using whatever movement commands you like. Type: y'k (<y-yank>, <single quote-go to mark>, k) To yank from the mark to the current location.

    You can paste those lines wherever you want with p.

    Similarly, d'k will cut/delete the lines from the current location to the mark.

    2.1 复制一段内容示例如下:

    
    # 1. 移动起始位置,做好标记
    mk
    
    # 2. 移动到终点位置,复制标记到此点间的内容
    y'k
    
    # 3. 移动到将要粘贴的位置
    p
    
    

    2.2 删除一段内容示例如下:

    
    # 1. 移动起始位置,做好标记
    mk
    
    # 2. 移动到终点位置,删除标记到此点间的内容
    d'k
    
    
    

    Date: 2013-03-20 Wed

    Author: liweilijie

    Org version 7.9.2 with Emacs version 23

    Validate XHTML 1.0
  • 相关阅读:
    蓝绿发布、灰度发布和滚动发布
    linux redis 设置密码:
    redis配置文件讲解
    17 个方面,综合对比 Kafka、RabbitMQ、RocketMQ、ActiveMQ 四个分布式消息队列
    CentOS 7下安装Redis
    压力测试工具介绍
    【k8s部署kong一】kong k8s 安装 以及可视化管理界面
    Jmeter连接ORACLE数据库
    Jenkins安装插件提示实例似乎已离线问题解决办法
    Fiddler增加显示请求响应时间列
  • 原文地址:https://www.cnblogs.com/liweilijie/p/2971679.html
Copyright © 2011-2022 走看看