2014-02-26 29 views
4

如何瀏覽Fireplace中之前的表單評估結果?例如,如果兩種形式瀏覽在Vim Fireplace插件的評估結果

(meta #'str) 
(meta #'use) 

CPP命令被隨後對其進行評估,是否有可能有這兩個評價在Vim緩衝或某種quickfix列表的輸出一目瞭然?

謝謝!

回答

9

您可以使用:Last獲取上一次評估的值,並使用:2Last,然後依此類推。從官方文檔(https://github.com/tpope/vim-fireplace/blob/master/doc/fireplace.txt):

         *fireplace-:Last* 
:Last   Open the result of the last evaluation in the preview 
       window. Use :2Last to get the next-to-last result, 
       and so on. Once the window is open, cycle to older 
       and newer entries with |:lprevious| and |:lnext|. 
+0

這就是我一直在尋找的!謝謝! – siphiuel