zoukankan      html  css  js  c++  java
  • Vim插件-模糊搜索神器FZF

    vim下支持的命令

    这些命令都是FZF调用某个工具产生文件,文件内容, tag, comment, command,然后FZF用一个小窗口把它们显示出来,用户就可以用模糊搜索的方式来选择一个或多个选项,按下enter键后就可以用VIM打开它们或跳转到相应的行。
    如Files针对的就是文件, GFiles针对的就是git文件
    Command List
    Files [PATH] 普通文件查找 (similar to :FZF)
    GFiles [OPTS] git文件查找 (git ls-files)
    GFiles? git文件查找 (git status)
    Buffers buffer文件切换
    Colors Color schemes
    Ag [PATTERN] ag search result (ALT-A to select all, ALT-D to deselect all)
    Lines [QUERY] 加载的所有buffer里查找
    BLines [QUERY] 在当前buffer里查找包含某关键词的行
    Tags [QUERY] 以Tag查找 (ctags -R)
    BTags [QUERY] Tags in the current buffer
    Marks Marks
    Windows Windows
    Locate PATTERN locate command output
    History v:oldfiles and open buffers
    History: 命令历史查找
    History/ Search history
    Snippets Snippets (UltiSnips)
    Commits Git commits (requires fugitive.vim)
    BCommits Git commits for the current buffer
    Commands Commands
    Maps Normal mode mappings
    Helptags Help tags 1
    Filetypes File types

  • 相关阅读:
    Jenkins安装
    Python操作yaml文件
    class 中构造函数与析构函数
    python发送邮件(yagmail模块)
    filter、map函数的区别
    python redis操作
    多个 python的pip版本选择
    python Excel操作
    python MD5操作
    缓存淘汰算法之LRU实现
  • 原文地址:https://www.cnblogs.com/jiftle/p/12157546.html
Copyright © 2011-2022 走看看