Last active
August 29, 2015 14:07
-
-
Save eral/3ab0584ef392bbab7a85 to your computer and use it in GitHub Desktop.
範囲選択を維持しつつ対括弧の検索を行うサクラエディタ用マクロ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// (C) 2014 ERAL | |
// Distributed under the Boost Software License, Version 1.0. | |
// (See copy at http://www.boost.org/LICENSE_1_0.txt) | |
var is_text_selected = Editor.IsTextSelected(); | |
if (1 == is_text_selected) { | |
Editor.BeginSelect(); | |
} | |
Editor.BracketPair(); | |
if (1 == is_text_selected) { | |
Editor.BeginSelect(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment