ফাংশন শেষ না হওয়া পর্যন্ত পর্দার রিফ্রেশ প্রতিরোধ করুন


10

আমার একটি ফাংশন রয়েছে যা বর্তমান ভিআইএম বাফারটিতে পাঠ্যের প্রচুর পরিমাণে আউটপুট এবং আউটপুট করে এবং আমি যখন এটি চালাচ্ছি তখন অন্ধ গতিতে ঘটে যাওয়া কিছুটা কিছুটা বিরক্তিকর।

ফাংশনটি শেষ না হওয়া পর্যন্ত আমি কীভাবে স্ক্রিনটি স্থির রাখতে পারি?

এখানে প্রশ্নে ফাংশনটি রয়েছে:

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
নেই :set lazyredrawসহায়তা প্রয়োজন?
ভ্যানলেজার

দুঃখিত, না। এটি কেবল ম্যাক্রোগুলিকেই সহায়তা করে। আমি এটি চেষ্টা করেছি, এবং এটি আমার ফাংশনের জন্য কার্যকর হয়নি।
ফ্লুরাইউইন্ডে

2
আমি এটি করার কোনও উপায় জানি না, সম্ভবত টার্মিনাল উইন্ডোজ (যা জিভিমের পক্ষে কাজ করবে না) জমে থাকা ছাড়া। তবে সম্ভবত আপনার স্ক্রিনটি কম স্ক্রিন আপডেট দিয়ে চালিত করার অন্য কোনও উপায় আছে? আপনি যদি আপনার ফাংশনটি পোস্ট করেন তবে এটি সহায়ক হবে ;-)
মার্টিন টর্নিওজ

আপনি এটি চেয়েছিলেন, @ কার্পেটস্মোকার। ;-) ফাংশন যোগ করা হয়েছে। (এটি বরং দীর্ঘ))
ফ্লুরাইউইন্ড

উত্তর:


5

আমি মনে করি সমস্যাটি কোনটি নয় :lazyredraw, যেমনটি আমি ডক্স থেকে বুঝেছি, ফাংশনগুলির জন্য কাজ করা উচিত (দেখুন :help :redraw, এটি "স্ক্রিপ্ট বা ফাংশনটি চালিয়ে অর্ধেক পর্দা আপডেট করা দরকারী")।

সমস্যাটি হ'ল আপনি normalবাফার আপডেট করার জন্য ব্যবহার করেন এবং এটি যদি আপনি আসলে কিছু টাইপ করেন এবং এখানে :lazyredrawকার্যকর না হয় তবে এটি কাজ করে।

পরিবর্তে normalআপনার পাঠ্য ম্যানিপুলেশন ফাংশন (যেমন setline()) এবং প্রাক্তন কমান্ড (পছন্দ :delete) ব্যবহার করা দরকার।

এই দুটি ফাংশনটির তুলনা করুন, প্রথমটি, MakeChangesNorm()কিছু ক্রেজি স্ক্রিন আপডেট করবে, এবং দ্বিতীয়টি 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 ...

স্পষ্ট করা; পরবর্তীকালে "স্ক্রিনটি পুনরুদ্ধার করুন" কমান্ড না দেওয়া পর্যন্ত বেশ কয়েকটি সাধারণ কমান্ড জারি করার এবং পুরোপুরি পর্দার আপডেট স্থগিত করার কোনও উপায় নেই? আমার বোঝার winsaveviewএবং winrestviewকেবল কার্সার অবস্থান এবং উইন্ডোতে লাইনের আপেক্ষিক অবস্থান সংরক্ষণ করি।
লুক ডেভিস 21

আমি অন্য প্রশ্নে এটি জিজ্ঞাসা করব।
লুক ডেভিস 21
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.