4
5

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.

【MouseGestureL】 マウスだけで Google 検索する

Posted at

:mouse_three_button:
MouseGestureL で好みのジェスチャに下記のスクリプトを割り当てましょう。選択中の文字列で Google 検索できるようになり圧倒的な速度を手にすることができます。検索の仕事が多い方にぜひ。

括弧や句読点などの検索ノイズを除去しているので文字列選択はある程度適当でも問題ありません。

Clipboard =
Sleep, 50
Send, ^c
ClipWait, 0.1
myURL = http://www.google.co.jp/search?q=
searchText := RegExReplace(Clipboard, "[()「」【】『』[]〈〉《》〔〕{}”]", "+") ; 全角括弧類
searchText := RegExReplace(searchText, "[・,、。.:;―~─]", "+") ; 全角句読点類
searchText := RegExReplace(searchText, "[""\(\)\{\}\[\]<>\#]", "+") ; 半角括弧類
searchText := RegExReplace(searchText, "[&,\.:;/-]", "+") ; 半角句読点類
searchText := RegExReplace(searchText, "[  ]|[\t\n]", "+") ; 全角半角空白・制御文字(タブと改行)
Run, %myURL%%searchText%
Return
4
5
7

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
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?