We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 968340e commit 082120aCopy full SHA for 082120a
indent/clojure.vim
@@ -90,10 +90,10 @@ function! s:FirstFnArgPos(pos)
90
let ln = getline(lnr)
91
call cursor([lnr, base_idx + 1])
92
93
- if ln[base_idx] =~# '["\,円[:space:]]' | return [0, 0] | endif
+ if ln[base_idx] =~# '\m["\,円[:space:]]' | return [0, 0] | endif
94
95
" Find first collection delimiter or char preceeding whitespace.
96
- let pos = searchpos('\([{\[(]\|.[[:space:],]\)', 'cWz', lnr)
+ let pos = searchpos('\m\([{\[(]\|.[[:space:],]\)', 'cWz', lnr)
97
if pos == [0, 0] | return pos | endif
98
99
" If at collection delimiter, jump to end delimiter.
@@ -105,7 +105,7 @@ function! s:FirstFnArgPos(pos)
105
endif
106
107
" Search forwards for first non-whitespace/comment char on line.
108
- let pos = searchpos('[^[:space:],]', 'Wz', lnr)
+ let pos = searchpos('\m[^[:space:],]', 'Wz', lnr)
109
return ln[pos[1] - 1] ==# ';' ? [0, 0] : pos
110
endfunction
111
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments