确认search文字string

当我想要searchhtml标记的一部分时,我厌倦了不得不逃脱的东西。

我怎样才能确切地search我input的内容, 不必逃避东西?

例如

ack-grep 'console.log(foo' 

我得到:

 Unmatched ( in regex; marked by <-- HERE in m/console.log( <-- HERE par/ 

    你必须逃避正则expression式。

     ack 'console\.log\(foo' 

    (你应该逃避.因此,你不匹配“consoleflog”,因为.匹配任何单个字符)

    如果你不想这样做,那就自动引用每个元字符。

     ack -Q 'console.log(foo'