LoginSignup
4
3

More than 5 years have passed since last update.

Emacs で python コーディング用に タグジャンプ を使う設定の備忘録

Posted at

python コーディングのための、emacs タグジャンプの設定を忘れないように記録しておこうと思います。

環境

・ Ubuntu 16.04
・ Emacs 24.5.1

やったこと

・ ターミナルで下記を実行して、インストール

$ sudo apt install exuberant-ctags

・ ターミナルで下記を実行して、TAG ファイルを作成。

$ ctags -Re

・ emacs のソースコード上で、定義されている箇所にタグジャンプするため、emacs 中で下記を実施。

M-.(ドット) 

・ 所望のものと違った場合は、次の候補にタグジャンプするため、emacs 中で下記を実施。

Ctrl-u M-.(ドット) 
4
3
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
4
3