Skip to content

Instantly share code, notes, and snippets.

@1000k
Last active April 24, 2017 05:46
Show Gist options
  • Save 1000k/201f68aba915bd14837df252710d68fe to your computer and use it in GitHub Desktop.
Save 1000k/201f68aba915bd14837df252710d68fe to your computer and use it in GitHub Desktop.
vim で ANSI color codes を除去する ref: http://qiita.com/1000k/items/6d4953d2dd52fdd86556
:%s/<1b>\[[0-9;]*m//g
※ <1b> はそのまま入力するのではなく、 <Ctrl+v><ESC> で入力する Escape 制御文字です。
command! DeleteAnsi %s/<1b>\[[0-9;]*m//g$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment