Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正規表現、、があり^ \{3,}/、の代わりに設定または変数の値を使用したいと思います3。コンテキストは次のとおりです。
^ \{3,}/
3
match LeadingSpaces /^ \{3,}/ highlight LeadingSpaces ctermbg=red guibg=red
tabstop3の代わりにの値を使用したい。または、使用する新しい変数を設定することもできます。
tabstop
代わりに次を試してくださいmatch LeadingSpaces /^ \{3,}/:
match LeadingSpaces /^ \{3,}/
execute 'match LeadingSpaces /^ \{'.&tabstop.',}/'