feedSomeKeys for Google Reader

適当なので変なとこあるかも。
はうまくうごいてない??

  // Google Reader
  autocommands.add(
    'LocationChange', 
    /^https?:\/\/www\.google\.(com|co\.jp)\/reader\//,
    function () {
      liberator.plugins.feedKey.setup(
        [
         "n", "p", "v", "N", "P", "O", "x", ["o", "O"],
         ["j", "<SPACE>"], ["k", "<S-SPACE>"], ["<SPACE>", "j"], ["<S-SPACE>", "k"], 
         "s", "S", "A", "J", "K", "=", "-", "gh", "ga", "gu", "gt", "gd"
        ].map(function(it) ((typeof it == "string") ? [it, "4" + it] : [it[0], "4"+it[1]])),
        true
      );
    }
  );