/* NEW BSD LICENSE {{{ Copyright (c) 2009, anekos. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ################################################################################### # http://sourceforge.jp/projects/opensource/wiki/licenses%2Fnew_BSD_license # # に参考になる日本語訳がありますが、有効なのは上記英文となります。 # ################################################################################### }}} */ // PLUGIN_INFO {{{ let PLUGIN_INFO = literal bmark :bmark command that can included characters such as '"' in the URL. '"' などの文字を含めることができる :bmark コマンド 1.0.0 anekos new BSD License (Please read the source code comments of this plugin) 修正BSDライセンス (ソースコードのコメントを参照してください) https://github.com/vimpr/vimperator-plugins/raw/master/literal-bmark.js 2.0pre 2.0pre ; // }}} (function () { let bmark = commands.get('bmark'); commands.addUserCommand( ['lbm[ark]'], 'Add a bookmark - literal', bmark.action, { literal: 0, bang: bmark.bang, count: bmark.count, argCount: '1', options: bmark.options, complete: bmark.complete }, true ); })(); // vim:sw=2 ts=2 et si fdm=marker: 4'>4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
var PLUGIN_INFO =
<VimperatorPlugin>
    <name>{NAME}</name>
    <description>Adds "Yank element's text/html/attrs" or "Paste to element" hint mode</description>
    <description lang="ja">要素の text/html/attrs をコピーするヒントモードを追加する</description>
    <minVersion>2.0pre</minVersion>
    <maxVersion>2.3</maxVersion>
    <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/hints-yank-paste.js</updateURL>
    <author mail="hotchpotch@gmail.com" homepage="http://d.hatena.ne.jp/secondlife/">Yuichi Tateno</author>
    <license>MPL 1.1/GPL 2.0/LGPL 2.1</license>
    <version>0.1.1</version>
    <detail><![CDATA[
;  hint モードにおいてc/C で要素の text / HTML / attributes をクリップボードにコピー(Yank)できるようにするプラグインです
ソースコードや段落, 画像のURL, input/textarea の値などをさくっとコピーしたりどこかの部分の HTML 自体をコピりたいなーという時に活用できます
また p/P input/textarea の要素に現在のクリップボードの値を貼り付け(pが追加Pが置換)することができますエディタで書いた文章をそのまんま追加したい時などに利用できます

== SETTINGS ==
マップするキーや hint  XPath などは変更できます

liberator.globalVariables.hints_copy_maps = ['c', 'C', 'p', 'P'];
let g:hints_copy_maps = "c C p P"

: paste のほうは設定しない
liberator.globalVariables.hints_copy_maps = ['c', 'C', null, null];
let g:hints_copy_maps = "c C <nop> <nop>"

set hintyanktags='//xpath|//xpath2';
set hintpastetags='//xpath|//xpath2';

== MAPPINGS ==
;c :
    Yank hint element's text or attributes.
;C :
    Yank hint element's HTML.
;p :
    Paste(append) to input/textarea.
;P :
    Paste(replace) to input/textarea.

]]></detail>
</VimperatorPlugin>;

(function() {
var p = function(msg) {
    liberator.log(msg, 0);
};

const DEFAULT_MAPS = ['c', 'C', 'p', 'P'];
const DEFAULT_YANK_HINTTAGS = 'h1 h2 h3 h4 h5 h6 pre p ul ol ul/li ol/li blockquote img code input textarea'.
    split(/\s+/).map(function(t) '//' + t).join(' | ');
const TEXT_ATTRS = 'src value href title alt'.split(/\s+/);

const DEFAULT_PASTE_HINTTAGS = '//input[@type="text" or @type="password" or @type="search" or not(@type)] | //textarea';

options.add(["hintyanktags"],
    "XPath string of hintable elements activated by 'hints-yank'",
    "string", DEFAULT_YANK_HINTTAGS);

options.add(["hintpastetags"],
    "XPath string of hintable elements activated by 'hints-paste'",
    "string", DEFAULT_PASTE_HINTTAGS);

let maps = liberator.globalVariables.hints_copy_maps || DEFAULT_MAPS;
if (typeof maps === "string")
  maps = maps.split(/\s+/);

var stripText = function(text) {
    text = text.replace(/^[ \t]+(?:\r\n|[\r\n])|\s+$/m, ''); //mg?
    let matched = text.match(/\r\n|[\r\n]/g);
    if (!matched || matched.length == 1)
        text = text.replace(/^\s+/, '');
    return text;
};

if (maps[0]) // c
    hints.addMode(maps[0], 'Yank TEXT', function(elem) {
        let text = elem.textContent;
        if (!text)
            TEXT_ATTRS.some(function(attr)
                (text = elem[attr]) ? true : false);

        util.copyToClipboard(stripText(text), true);
    }, function() options['hintyanktags']);

if (maps[1]) // C
    hints.addMode(maps[1], 'Yank HTML', function(elem) {
        elem = elem.cloneNode(true);
        let tmp = window.content.document.createElement('div');
        tmp.appendChild(elem);
        util.copyToClipboard(tmp.innerHTML, true);
    }, function() options['hintyanktags']);

var replaceOrAppend = function(replace) {
    return function(elem) {
        let clipboard = util.readFromClipboard();
        if (clipboard && clipboard.length) {
            if (elem.tagName.toUpperCase() == 'INPUT')
                clipboard.replace(/\r\n|[\r\n]/g, ' ');

            if (replace) {
                elem.value = clipboard;
            } else {
                elem.value += clipboard;
            }
        }
    };
};

if (maps[2]) // p
    hints.addMode(maps[2], 'Paste text (append)', replaceOrAppend(false), function() options['hintpastetags']);

if (maps[3]) // P
    hints.addMode(maps[3], 'Paste text (replace)', replaceOrAppend(true), function() options['hintpastetags']);

})();