LoginSignup
1
2

More than 5 years have passed since last update.

pythonのlistを速く書くvim tips

Last updated at Posted at 2017-09-17

書きたいもの

classes = ('plane','car','bird','cat','deer','dog','frog','horse','ship','truck')

まずはじめに、以下のように打つ

classes = ('plane,car,bird,cat,deer,dog,frog,horse,ship')

のあとにvimの置換で

:s/,/','/g

とすればいい。

もっと簡単な方法あったら、vimmerの方達教えてください。

1
2
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2