Zapobiegaj odświeżaniu ekranu do momentu zakończenia funkcji


10

Mam funkcję, która dużo przesuwa i wyprowadza tekst do bieżącego bufora vima, a kiedy go uruchamiam, widzenie wszystkiego, co dzieje się z oślepiającą prędkością, jest nieco niepokojące.

Jak mogę zamrozić ekran, dopóki funkcja nie zostanie wykonana?

Oto funkcja, o której mowa:

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
Czy :set lazyredrawpomaga
VanLaser,

Przepraszam, nie. To pomaga tylko makrom. Właśnie tego spróbowałem i nie działało to dla mojej funkcji.
Flurrywinde,

2
Nie wiem, jak to zrobić, poza zamrożeniem okna terminala (które nie działa w gVimie). Ale może jest inny sposób na uruchomienie funkcji przy mniejszej liczbie aktualizacji ekranu? Byłoby pomocne, gdybyś opublikował swoją funkcję ;-)
Martin Tournoij

Poprosiłeś o to, @Carpetsmoker. ;-) Dodano funkcję. (Jest raczej długi.)
Flurrywinde

Odpowiedzi:


5

Myślę, że problemem nie jest to, :lazyredrawco, jak rozumiem z dokumentów, powinno działać dla funkcji (patrz :help :redraw: „Przydatne do aktualizacji ekranu w połowie wykonywania skryptu lub funkcji”).

Problem polega na tym, że używasz normalaktualizacji bufora i działa to tak, jakbyś faktycznie coś wpisał, a tutaj :lazyredrawnie ma to żadnego efektu.

Zamiast tego normalmusisz używać funkcji manipulacji tekstem (jak setline()) i komend ex (jak :delete).

Porównaj te dwie funkcje, pierwsza MakeChangesNorm()zrobi kilka szalonych aktualizacji ekranu, a druga MakeChangesFunctions()zrobi aktualizację natychmiast:

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

Plik, na którym testowałem to wygląda następująco:

*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 ...

Dla jasności; czy nie ma sposobu, aby wydać kilka normalnych poleceń i całkowicie odłożyć aktualizację ekranu, aż do kolejnego polecenia „przywróć ekran”? Rozumiem winsaveviewi winrestviewpo prostu przechowuję położenie kursora i względne położenie linii w oknie.
Luke Davis

Zadam to w innym pytaniu.
Luke Davis
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.