Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

実行環境を記入するvimショートカット

$
0
0

READMEとかに自分の環境を載せたほうがいいんだろうけど、
なんかめんどくさい...

こういうことよくありますよね.

じゃあ:EnvInfoって打ったら、
こんなふうに環境情報が記入されるような設定を入れちゃいましょう.:thumbsup_tone1::thumbsup_tone2::thumbsup_tone3:

4.15.0-34-generic

Python 2.7.15

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.5 LTS"

kinetic

以下vimscript.

私はpython使うのでpythonのヴァージョンを表示させていますが、
これをcmakeだったりのヴァージョンに変えたりアレンジして使ってください.

command! EnvInfo call writeEnvInfo()
function! EnvInfo()
    " carnel version.
    execute ':r! uname -r'
    " python version.
    execute ':r! python -V'
    " Os version.
    execute ':r! cat /etc/lsb-release'
    " ros version.
    execute ':r! rosversion -d'
endfunction

Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>