LoginSignup
0
1

More than 5 years have passed since last update.

【サルが書く】特定の関数の処理を見たいときの検索方法

Last updated at Posted at 2018-08-17

わきゃ!

getHogeHogeinfo関数の処理が見たい!

そんなときは「n getHogeHogeInfo」でプロジェクト内検索してみましょう。

「 functio n getHogoHogeInfo

function の"n"を含めて検索すると、関数の呼び出し部分は避けて検索できる。

function getHogeHogeinfo() {
    if ('banana' === 'banana') {
        return false; 
    }
.
.
.
}

簡単に関数に飛べて便利!
(素直にIDEの関数ジャンプを使いましょう。)

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