2014-02-26 1 views
4

Fireplace에서 이전 양식 평가 결과를 탐색하는 방법은 무엇입니까? 예를 들어, 만약 두 가지 형태Vim Fireplace 플러그인의 eval 검색 결과

(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