Created
December 6, 2009 13:30
-
-
Save littlefolk/250225 to your computer and use it in GitHub Desktop.
VimperatorでXPathで指定した範囲を選択する
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
// VimperatorでXPathで指定した範囲を選択する | |
let Node = plugins.libly.$U.getFirstNodeFromXPath("//*"); | |
if (Node) | |
{ | |
let range = content.document.createRange(); | |
range.selectNodeContents(Node); | |
content.getSelection().addRange(range); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment