Skip to content

Instantly share code, notes, and snippets.

@eral
Last active August 29, 2015 14:07
Show Gist options
  • Save eral/3ab0584ef392bbab7a85 to your computer and use it in GitHub Desktop.
Save eral/3ab0584ef392bbab7a85 to your computer and use it in GitHub Desktop.
範囲選択を維持しつつ対括弧の検索を行うサクラエディタ用マクロ
// (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