LoginSignup
0
2

More than 3 years have passed since last update.

vimで複数行をコメントアウトする

Last updated at Posted at 2019-08-30

GIF2.gif

実際の入力


ctrl + v      // 矩形ビジュアルモード
j             // 4行下へ
j
j
j
shift + i     // カーソルから前側に入力
#             // 入れたい文字を入力
Esc           // 選択行へ反映、若干時間差あり

ctrl + v      // 矩形ビジュアルモード
j             // 4行下へ
j
j
j
x             // 削除

vimで一気にコメントアウトする方法(複数行の先頭に文字を追加する方法) - Qiita

vimで複数行のコメント入れたり消したりする(矩形入力・矩形選択削除) - Qiita

vimで複数行のインデントを連続で行う - Qiita

【レビュー】デスクトップを動画キャプチャーしてアニメーションGIFファイルにする「GifCam」 - 窓の杜

mysql - Docker Hub

stack.yml
# Use root/example as user/password credentials
version: '3.1'

services:

  db:
    image: mysql
    command: --default-authentication-plugin=mysql_native_password
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: example

  adminer:
    image: adminer
    restart: always
    ports:
      - 8080:8080
0
2
0

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
0
2