3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

emacs チュートリアル

Posted at

概要

普段はvscodeでGUIをメインにコーディングするため、CUIベースのemacsというエディタには慣れが必要だと思った。
そのため忘備録としてよく使うコマンドなどを以下に記す

基本的な使い方

「コピー」や「一文字進む」などの操作は基本的に複数のキーを組み合わせて実行します。例えば
C-u : Ctrl + u
C-u 0 : 一度C-uしてから0
M-x : alt + x

カーソル移動系

C-u 0 C-l : カーソルの位置が画面の一番上に来る
C-u -1 C-l : 現在のカーソルの位置が画面の一番下に来るようにする
C-v : スクロールする
M-v : スクロールする

検索系

C-s : ファイルから検索したキーワードを全て検索する。次の候補を見に行くときはもう一度C-s。
C-r : 逆順に検索する。C-s を繰り返し押して検索し続ける途中で C-r を押すと逆順の検索結果にヒットするのが便利。

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?