मैं मिलान पर "%" नाम (उदाहरण के लिए, यदि / अंत, / अंत के लिए) को मैचिट.व्हीम से परिभाषित कैसे उजागर कर सकता हूं?


10

वर्तमान में मेरे विम Cyan पृष्ठभूमि और सफेद अग्रभूमि के साथ कोष्ठक, कोष्ठक, उद्धरण, आदि पर प्रकाश डाला गया है - कर्सर को इसके बीच ले जाया जा सकता है %। मेरे मिलान के लिए धन्यवाद ।vim, मैं %if / end, for / end, आदि के बीच स्विच कर सकता हूं - हालाँकि ये चयन के लिए हाइलाइट नहीं किए गए हैं।

मैं चयन पर इन मिलान जोड़े को स्वचालित रूप से कैसे उजागर कर सकता हूं, जैसे कोष्ठक के साथ स्वचालित रूप से किया जाता है?

इसके अलावा, मैं इन जोड़े के उपयोग के लिए उपयोग किए जाने वाले पृष्ठभूमि रंग को कैसे संशोधित कर सकता हूं :highlight?

अग्रिम में धन्यवाद।


मैंने खराब तरीके से निर्दिष्ट matchit.vimसमूहों के लिए खाते के नीचे @ टॉमी द्वारा जवाब अपडेट किया है , और अन्य परिस्थितियां जहां %ऑपरेटर कर्सर को मूल स्थिति में वापस नहीं करता है, कभी भी। "जबकि" लूप में अंतर देखें। इस संस्करण को पढ़ने वाले किसी को भी इस संस्करण का उपयोग करने की सलाह दी जाती है, ताकि अनंत छोरों से बचा जा सके:

function! s:get_match_lines(line) abort
  " Loop until `%` returns the original line number; abort if
  " (1) the % operator keeps us on the same line, or
  " (2) the % operator doesn't return us to the same line after some nubmer of jumps
  let a:tolerance=25
  let a:badbreak=1
  let a:linebefore=-1
  let lines = []
  while a:tolerance && a:linebefore != line('.')
    let a:linebefore=line('.')
    let a:tolerance-=1
    normal %
    if line('.') == a:line
      " Note that the current line number is never added to the `lines`
      " list. a:line is the input argument 'line'; a is the FUNCTION BUFFER
      let a:badbreak=0
      break
    endif
    call add(lines, line('.'))
  endwhile
  "Return to original line no matter what, return list of lines to highlight
  execute "normal ".a:line."gg"
  if a:badbreak==1
    return []
  else
    return lines
  endif
endfunction

function! s:hl_matching_lines() abort
  " `b:hl_last_line` prevents running the script again while the cursor is
  " moved on the same line.  Otherwise, the cursor won't move if the current
  " line has matching pairs of something.
  if exists('b:hl_last_line') && b:hl_last_line == line('.')
    return
  endif
  let b:hl_last_line = line('.')
  " Save the window's state.
  let view = winsaveview()
  " Delete a previous match highlight.  `12345` is used for the match ID.
  " It can be anything as long as it's unique.
  silent! call matchdelete(12345)
  " Try to get matching lines from the current cursor position.
  let lines = s:get_match_lines(view.lnum)
  if empty(lines)
    " It's possible that the line has another matching line, but can't be
    " matched at the current column.  Move the cursor to column 1 to try
    " one more time.
    call cursor(view.lnum, 1)
    let lines = s:get_match_lines(view.lnum)
  endif
  if len(lines)
    " Since the current line is not in the `lines` list, only the other
    " lines are highlighted.  If you want to highlight the current line as
    " well:
    " call add(lines, view.lnum)
    if exists('*matchaddpos')
      " If matchaddpos() is availble, use it to highlight the lines since it's
      " faster than using a pattern in matchadd().
      call matchaddpos('MatchLine', lines, 0, 12345)
    else
      " Highlight the matching lines using the \%l atom.  The `MatchLine`
      " highlight group is used.
      call matchadd('MatchLine', join(map(lines, '''\%''.v:val.''l'''), '\|'), 0, 12345)
    endif
  endif
  " Restore the window's state.
  call winrestview(view)
endfunction
function! s:hl_matching_lines_clear() abort
  silent! call matchdelete(12345)
  unlet! b:hl_last_line
endfunction

" The highlight group that's used for highlighting matched lines.  By
" default, it will be the same as the `MatchParen` group.
highlight default link MatchLine MatchParen
augroup matching_lines
  autocmd!
  " Highlight lines as the cursor moves.
  autocmd CursorMoved * call s:hl_matching_lines()
  " Remove the highlight while in insert mode.
  autocmd InsertEnter * call s:hl_matching_lines_clear()
  " Remove the highlight after TextChanged.
  autocmd TextChanged,TextChangedI * call s:hl_matching_lines_clear()
augroup END

2
मुझे पता है कि यह एक पुराना सवाल है, लेकिन मैंने अभी कुछ समय पहले इसे फ्रंट पेज पर देखा था। बस मेरे नए प्लगइन मैच का उल्लेख करना चाहते हैं, यह ठीक इसी तरह से करने के लिए डिज़ाइन किया गया है, अधिक मजबूत तरीके से: github.com/andymass/vim-matchup (माचिस पर कई अन्य सुधारों के साथ)।
मास

वास्तव में उपयोगी लगता है, इसे बनाने के लिए धन्यवाद! मैं इसे आज़माऊँगा।
ल्यूक डेविस

जवाबों:


12

मुझे लगा कि यह विचार दिलचस्प था, इसलिए मैंने इसे एक शॉट दिया। यह HTML जैसी सघन फाइलों में विशेष रूप से उपयोगी होगी।

मैच लाइनों

निम्न स्क्रिप्ट बस matchit.vimसंख्याओं को रिकॉर्ड करते समय वह क्या करती है। स्पष्टीकरण स्क्रिप्ट की टिप्पणियों में हैं।

matchlines.vim

function! s:get_match_lines(line) abort
  let lines = []

  " Loop until `%` returns the original line number
  while 1
    normal %
    if line('.') == a:line
      " Note that the current line number is never added to the `lines`
      " list.
      break
    endif
    call add(lines, line('.'))
  endwhile

  return lines
endfunction

function! s:hl_matching_lines() abort
  " `b:hl_last_line` prevents running the script again while the cursor is
  " moved on the same line.  Otherwise, the cursor won't move if the current
  " line has matching pairs of something.
  if exists('b:hl_last_line') && b:hl_last_line == line('.')
    return
  endif

  let b:hl_last_line = line('.')

  " Save the window's state.
  let view = winsaveview()

  " Delete a previous match highlight.  `12345` is used for the match ID.
  " It can be anything as long as it's unique.
  silent! call matchdelete(12345)

  " Try to get matching lines from the current cursor position.
  let lines = s:get_match_lines(view.lnum)

  if empty(lines)
    " It's possible that the line has another matching line, but can't be
    " matched at the current column.  Move the cursor to column 1 to try
    " one more time.
    call cursor(view.lnum, 1)
    let lines = s:get_match_lines(view.lnum)
  endif

  if len(lines)
    " Since the current line is not in the `lines` list, only the other
    " lines are highlighted.  If you want to highlight the current line as
    " well:
    " call add(lines, view.lnum)
    if exists('*matchaddpos')
      " If matchaddpos() is availble, use it to highlight the lines since it's
      " faster than using a pattern in matchadd().
      call matchaddpos('MatchLine', lines, 0, 12345)
    else
      " Highlight the matching lines using the \%l atom.  The `MatchLine`
      " highlight group is used.
      call matchadd('MatchLine', join(map(lines, '''\%''.v:val.''l'''), '\|'), 0, 12345)
    endif
  endif

  " Restore the window's state.
  call winrestview(view)
endfunction

function! s:hl_matching_lines_clear() abort
  silent! call matchdelete(12345)
  unlet! b:hl_last_line
endfunction


" The highlight group that's used for highlighting matched lines.  By
" default, it will be the same as the `MatchParen` group.
highlight default link MatchLine MatchParen

augroup matching_lines
  autocmd!
  " Highlight lines as the cursor moves.
  autocmd CursorMoved * call s:hl_matching_lines()
  " Remove the highlight while in insert mode.
  autocmd InsertEnter * call s:hl_matching_lines_clear()
  " Remove the highlight after TextChanged.
  autocmd TextChanged,TextChangedI * call s:hl_matching_lines_clear()
augroup END

मुझे वास्तव में यह पसंद नहीं है CursorMoved, हालाँकि। मुझे लगता है कि यह एक महत्वपूर्ण मानचित्र के रूप में बेहतर है जिसका उपयोग मुझे आवश्यकता होने पर किया जा सकता है:

nnoremap <silent> <leader>l :<c-u>call <sid>hl_matching_lines()<cr>

आप matchaddposइसके बजाय फ़ंक्शन का उपयोग कर सकते हैं । यह थोड़ा तेज है और यदि आप पूरी लाइन को वैसे भी हाइलाइट करते हैं, तो यह चीजों को थोड़ा सरल करेगा।
कार्ल यंगवे लर्वग

1
@ KarlYngveLervåg अच्छी बात है। मैं अवचेतन रूप से इससे बचता हूं क्योंकि यह अभी भी एक अपेक्षाकृत नया कार्य है (v7.4.330 मुझे लगता है) और यह मुझे एक बार गधे में मिलाता है। मैं इसका उपयोग करने के उत्तर को अपडेट करूंगा।
टॉमी

यह बिल्कुल सही है, बहुत बहुत धन्यवाद! अच्छा Vimcript अभ्यास भी; प्रत्येक पंक्ति को समझने की कोशिश करेंगे। मुझे लगता है कि यह काफी लोकप्रिय हो सकता है यदि आप इस तरह की उपयोगिता लिखने वाले हैं।
ल्यूक डेविस

@LukeDavis एक अवांछित प्रभाव है जो इस से आता है कि मैंने देखा: यह कूद सूची को खराब कर देगा। मैं उस <c-o>समय की संख्या का उपयोग करके इसे ठीक करने के तरीके के साथ आया था जो एक मैच मिला था और यह एक तरह से काम करता है। समस्या यह है कि matchit.vim में एक बग है जो विंडो की शीर्ष रेखा को कूद सूची में जोड़ता है। इसे स्वीकार कर लिया गया है , लेकिन इसे ठीक करने के लिए कोई जल्दबाजी नहीं दिखती है।
टॉमी ए

@ टॉमी अरे, इस उपयोगिता के लिए फिर से धन्यवाद। मैं वास्तव में अपने कंप्यूटर पर पाया है कि CursorMove ऑटोकेम के साथ देरी बहुत नगण्य है। मैंने आपके फंक्शन s:get_match_lines(line)को अनंत छोरों के खिलाफ मदद करने के लिए अद्यतन किया , जो कि कुछ अजीब संदर्भों में मेरे लिए एक बड़ी समस्या बन रहा था। दुर्भाग्य matchit.vimखामियों से भरा है। ऊपर मेरा संपादन देखें और मुझे बताएं कि क्या आपके पास कोई सुझाव है; मैं एक विम्सस्क्रिप्ट शुरुआती हूं।
ल्यूक डेविस
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.