「constexpr 長いねん」に対するエディタ的回答
autocmd FileType cpp \ inoremap <expr> e getline('.')[col('.')-6:col('.')-2] ==# 'const' ? 'expr ' : 'e'
これで conste
まで打つと自動で constexpr
に展開されるので,const
とほとんど同じ手間で constexpr
と打てる!やった!
autocmd FileType cpp \ inoremap <expr> e getline('.')[col('.')-6:col('.')-2] ==# 'const' ? 'expr ' : 'e'
これで conste
まで打つと自動で constexpr
に展開されるので,const
とほとんど同じ手間で constexpr
と打てる!やった!