1
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 5 years have passed since last update.

Emacsで単語の使用頻度をパッと見る

Posted at

カーソル上の単語が、Project内で何回使われているか教えてくれるpackageの紹介です。
本体はGitHub/how-many.elにおいておきます。

What's This

ポップアップで表示してくれます。
(注意)内部でgit grepをしているので、Git管理下のProjectである必要があります。

image.png

Usage

1. init.el を編集

git cloneした後、init.el に以下を記述してください。

;; pathを通す
(add-to-list 'load-path "/path/to/how-many")
(require 'how-many)

;; お好みで
(global-set-key (kbd "H-i") 'how-many)

2. 実行

簡単です

  1. 数えたい単語にカーソルを合わせます
  2. M-x how-many (上の例ではショートカットで H-i )を実行します
  3. ポップアップ!

みんなのPR待ってるぜ!

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