国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

vim的模糊查找插件LeaderF新功能介紹

junnplus / 1641人閱讀

摘要:前言上一篇文章讓人相見恨晚的插件模糊查找神器概括性的介紹了的基本功能,本篇對的新功能做一下介紹??崭穹指舻拿總€子串都是對整個字符串的模糊匹配,而不是精確匹配。

前言

上一篇文章《讓人相見恨晚的vim插件:模糊查找神器LeaderF》概括性的介紹了LeaderF的基本功能,本篇對LeaderF的新功能做一下介紹。

統一的命令接口

隨著LeaderF功能的不斷增多,LeaderF的命令也在不斷的增加,給開發和使用都帶來一些不便。于是,LeaderF提供了一個統一的命令接口,就像shell命令一樣,不同的命令選項組合,帶來不同的功能。
可以通過:Leaderf -h來查看具體使用方法。

usage: Leaderf[!] [-h] [--reverse] [--stayOpen] [--input  | --cword]
                  [--top | --bottom | --left | --right | --belowright | --aboveleft | --fullScreen]
                  [--nameOnly | --fullPath | --fuzzy | --regexMode] [--nowrap]
                  {file,tag,function,mru,searchHistory,cmdHistory,help,line,colorscheme,self,bufTag,buffer,rg}
                  ...

optional arguments:
  -h, --help            show this help message and exit
  --reverse             show results in bottom-up order
  --stayOpen            don"t quit LeaderF after accepting an entry
  --input        specifies INPUT as the pattern inputted in advance
  --cword               current word under cursor is inputted in advance
  --top                 the LeaderF window is at the top of the screen
  --bottom              the LeaderF window is at the bottom of the screen
  --left                the LeaderF window is at the left of the screen
  --right               the LeaderF window is at the right of the screen
  --belowright          the LeaderF window is at the belowright of the screen
  --aboveleft           the LeaderF window is at the aboveleft of the screen
  --fullScreen          the LeaderF window takes up the full screen
  --nameOnly            LeaderF is in NameOnly mode by default
  --fullPath            LeaderF is in FullPath mode by default
  --fuzzy               LeaderF is in Fuzzy mode by default
  --regexMode           LeaderF is in Regex mode by default
  --nowrap              long lines in the LeaderF window won"t wrap

subcommands:

  {file,tag,function,mru,searchHistory,cmdHistory,help,line,colorscheme,self,bufTag,buffer,rg}
    file                search files
    tag                 navigate tags using the tags file
    function            navigate functions or methods in the buffer
    mru                 search most recently used files
    searchHistory       execute the search command in the history
    cmdHistory          execute the command in the history
    help                navigate the help tags
    line                search a line in the buffer
    colorscheme         switch between colorschemes
    self                execute the commands of itself
    bufTag              navigate tags in the buffer
    buffer              search buffers
    rg                  grep using rg

If [!] is given, enter normal mode directly.

這樣就可以用:Leaderf [options]來執行LeaderF的命令了。例如:

Before Now
:LeaderfFile <=> :Leaderf file
:LeaderfBuffer <=> :Leaderf buffer
:LeaderfMru <=> :Leaderf mru
:LeaderfMruCwd <=> :Leaderf mru --cwd
...

每個子命令都有專有的命令選項,可以用:Leaderf -h來查看。例如,Leaderf mru -h:

usage: Leaderf[!] mru [-h] [--cwd] [--no-split-path] [--reverse] [--stayOpen]
                      [--input  | --cword]
                      [--top | --bottom | --left | --right | --belowright | --aboveleft | --fullScreen]
                      [--nameOnly | --fullPath | --fuzzy | --regexMode]
                      [--nowrap]

optional arguments:
  -h, --help       show this help message and exit

specific arguments:
  --cwd            search MRU in current working directory
  --no-split-path  do not split the path

common arguments:
  --reverse        show results in bottom-up order
  --stayOpen       don"t quit LeaderF after accepting an entry
  --input   specifies INPUT as the pattern inputted in advance
  --cword          current word under cursor is inputted in advance
  --top            the LeaderF window is at the top of the screen
  --bottom         the LeaderF window is at the bottom of the screen
  --left           the LeaderF window is at the left of the screen
  --right          the LeaderF window is at the right of the screen
  --belowright     the LeaderF window is at the belowright of the screen
  --aboveleft      the LeaderF window is at the aboveleft of the screen
  --fullScreen     the LeaderF window takes up the full screen
  --nameOnly       LeaderF is in NameOnly mode by default
  --fullPath       LeaderF is in FullPath mode by default
  --fuzzy          LeaderF is in Fuzzy mode by default
  --regexMode      LeaderF is in Regex mode by default
  --nowrap         long lines in the LeaderF window won"t wrap

If [!] is given, enter normal mode directly.
自下而上顯示結果

好多從ctrlp.vim轉過來的朋友說不習慣LeaderF自上而下顯示結果的方式,想要LeaderF也能像ctrlp一樣自下而上(最優結果在最下面)顯示結果,為了回饋各位朋友對LeaderF的支持,現在LeaderF也添加了自下而上顯示搜索結果的功能:

只需要在命令后面加上--reverse即可,或者也可以一勞永逸,在vimrc里面加上
let g:Lf_ReverseOrder = 1 。

And 模式

LeaderF支持用空格(可以用g:Lf_AndDelimiter來修改)作為And操作符來進行模糊匹配。當匹配已經匹配到字符串末尾時,可以通過敲空格和一個子串來匹配字符串的前面部分,進行快速過濾。
NOTE: 空格分隔的每個子串都是對整個字符串的模糊匹配,而不是精確匹配。

模糊匹配歷史

可以通過上下鍵來翻看模糊匹配歷史:

總結

LeaderF精益求精,永無止境。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/25050.html

相關文章

  • 讓人相見恨晚vim插件模糊查找神器LeaderF

    摘要:是什么是一個用寫的插件,可以在成千上萬數十萬個文件中,通過模糊查找的方式,快速找到目標文件。它還有很多衍生功能快速打開或定位某個最近使用的文件包括函數類變量等命令歷史文件中的某一行的等等。友情鏈接,也許是最好的模糊查詢插件 提到vim的模糊查找插件,很多人第一反應是ctrlp.vim,ctrlp知名度很高,但跟其它的同類插件相比,它的唯一優點是用vimL編寫(這讓它的性能是所有同類插件...

    Near_Li 評論0 收藏0
  • `Leaderf gtags`:模糊匹配與最強靜態符號索引工具完美結合

    摘要:也就是,是一個非常強大的源碼符號索引工具。韋大的中符號索引篇對有比較詳細的介紹,本文再做一些補充。的最新版本已經是,該版本了韋大文中提到的下面文件名大小寫的。 Gtags Gtags也就是GNU GLOBAL,是一個非常強大的源碼符號索引工具。它通過建立索引數據庫,不但可以查找函數的定義,還可以查找函數的所有引用(被調用的地方);而且它還可以增量地更新索引數據庫,當代碼有所改變時,它可...

    hsluoyz 評論0 收藏0
  • 如何讓 Vim 美觀又實用(1)

    摘要:比如,由于的一些命令,比如默認是在當前目錄下進行,實際就變成了在項目根目錄下搜索。如果使用,那么也是必不可少。比如一個比較實用的就是用查找當前光標下的詞。今天就先講這么多了,下一篇可能更多講講如何配置更美觀的一些小細節。 我學習計算機不久就開始用了 vim,到現在也三四年了,且算是對 vim 有了一定的控制力。在這里分享一下使用過程中的一些心路歷程,說實話,要留意的小地方有很多,但是由...

    wthee 評論0 收藏0
  • VIM模糊搜索神器FZF集成用法 - 從簡單到高級

    摘要:比如下表是它可用的所有選項是一個函數,用來創建自己的自動補全功能。如果第一個參數是一個命令字符或一個那么它會被用作對于高級用戶,可以傳入一個字典選項。希望大家可以結合創造出更多的使用方法。 FZF and VIM 前言 fzf本身并不是一個vim 插件,本來作者只提供了基本的wrapper函數(比如fzf#run). 但后來作者發現很多人并不熟悉VIMScript, 所以就創建一個默認...

    ?xiaoxiao, 評論0 收藏0

發表評論

0條評論

junnplus

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<