関数が完了するまで画面が更新されないようにする


10

私は現在のvimバッファーにテキストを大量に移動して出力する機能を持っています。それを実行すると、目がくらむほどの速度で起こっていることをすべて見ると少し戸惑います。

関数が完了するまで画面をフリーズするにはどうすればよいですか?

問題の関数は次のとおりです。

function! MakeChoices()
    :let save_view = winsaveview()
    let start = line('.')

    "Locate previous *choice. (b=backwards, W=nowrap, n=doNot move cursor)
    let choiceStartLine = search('^*choice', 'bW')

    if !choiceStartLine
        echo "No *choice found. (*choice must not be indented. This is to avoid finding *choice blocks nested in another *choice block.)"
        return -1
    endif
    "return getline(target_line_num, target_line_num+4)
    "Locate end of *choice block
    "echo getline(choiceStartLine, choiceStartLine+2)
    let choiceEndLine = search('^\S.*', 'W') "End is first line that starts with non-whitespace

    "If above search fails, might be at bottom of buffer
    if choiceEndLine == 0
        let choiceEndLine = search('^$', 'W') "End is first empty line
    endif

    "Now go back up to the last *goto
    let choiceEndLine = search('*goto', 'bW')

    "Get the entire *choice block and put it in gotoBlock
    let gotoBlock = getline(choiceStartLine, choiceEndLine)

    "Make labelArray (contains all labels to goto)
    let labelArray = []

    for cur in gotoBlock
        if match(cur, '*goto') != -1
            "echo 'cur: '.cur
            let curParsed = matchlist(cur, '*goto \(\S\+\)')
            "echo curParsed
            if len(curParsed) > 1
                let curLabel = curParsed[1]
            else
                echo 'ERROR: Bad *goto ('.cur.')'
                return -1
            endif
            call add(labelArray, curLabel)  
        endif
    endfor

    "Restore window to what it looked like (in case the searches scrolled
    "it)
    call winrestview(save_view)

    "Make newline after choice block if needed
    if strlen(getline(choiceEndLine+1)) > 0
        echo 'big line: '.getline(choiceEndLine+1)
        call cursor(choiceEndLine, 1)
        put=''
    endif

    call cursor(choiceEndLine+1, 1)

    "Put the new label blocks
    let skippedLabels = ''
    let numNewLabels = 0
    for cur in labelArray
        if !search('*label '.cur, 'wn')
            let numNewLabels += 1
            put='*label '.cur
            put='[This option is yet to be written.]'
            put=''
        else
            let skippedLabels .= cur.' '
        endif
    endfor

    "Remove trailing blank lines (Up to a point)
    let nextlines = getline(line('.')+1, line('.')+3)
    if len(nextlines) == 3
        if nextlines[0] == '' && nextlines[1] == '' && nextlines[2] == ''
            normal "_3dd
        elseif nextlines[0] == '' && nextlines[1] == ''
            normal "_2dd
        elseif nextlines[0] == ''
            normal "_dd
        endif
    endif

    "Move to first label's text (use ctrl-v ctrl-m to input the <CR> at
    "end)
    if numNewLabels != 0
        call cursor(choiceEndLine, 1)
        normal /\[This option is yet to be written.\]
        let @/='\[This option is yet to be written\.\]'
    endif

    "Print status message
    if len(skippedLabels) > 0
        echo 'Skipped: '.skippedLabels
    else
        echo 'New labels created: '.numNewLabels
    endif
endfunction

2
DOESの:set lazyredrawヘルプ?
VanLaser 2015

申し訳ありません。これはマクロにのみ役立ちます。試してみたところ、機能しませんでした。
Flurrywinde 2015

2
端末ウィンドウをフリーズする(gVimでは機能しない)以外に、これを行う方法はわかりません。しかし、おそらく、画面の更新を少なくして関数を実行する別の方法がありますか?あなたがあなたの関数を投稿したならそれは役に立ちます;-)
Martin Tournoij '07

@Carpetsmoker、それを要求しました。;-)関数が追加されました。(かなり長いです。)
Flurrywinde 2015

回答:


5

:lazyredrawがドキュメントで理解しているように、問題は関数では機能しないはずだと思います(:help :redraw「スクリプトまたは関数の実行中に画面を更新するのに便利です」を参照)。

問題は、あなたがnormalバッファを更新するために使用し、実際に何かを入力したかのように機能し、ここで:lazyredrawは効果がないことです。

代わりに、normalテキスト操作関数(などsetline())とexコマンド(など:delete)を使用する必要があります。

これら2つの関数を比較すると、最初の関数はMakeChangesNorm()クレイジーな画面更新を行い、2番目の関数はMakeChangesFunctions()即座に更新を行います。

function! MakeChangesNorm()
    let lastline = line('$')
    norm gg
    let linenum = line('.')
    let lastline = line('$')
    while linenum < lastline
        norm ^
        norm s/choice/test/
        norm j
        normal "_3dd
        let linenum = line('.')
        let lastline = line('$')
    endwhile
endfunction


function! MakeChangesFunctions()
    norm gg
    let linenum = line('.')
    let lastline = line('$')
    while linenum < lastline
        let line = getline(linenum)
        " Substitute using substitute() and setline()
        let line = substitute(line, 'choice', 'test', '')
        call setline(linenum, line)
        " Delete lines using :delete
        execute '.,.+2delete _'
        let linenum = line('.')
        let lastline = line('$')
    endwhile
endfunction

テストしたファイルは次のようになります。

*choice test2 test3 super
*choice test2 test3 super
*choice test2 test3 super
*choice test2 test3 super
*choice test2 test3 super
*choice test2 test3 super
*choice test2 test3 super
*choice test2 test3 super
*choice test2 test3 super
*choice test2 test3 super
... 60 lines like this ...

明確にするために; いくつかの通常のコマンドを発行して、後続の「画面の復元」コマンドまで画面の更新を完全に延期する方法はありませんか?私の理解があるwinsaveviewwinrestview、ウィンドウ内のカーソル位置と線の相対位置を記憶する単純。
ルークデイビス

これについては別の質問で尋ねます。
ルークデイビス
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.