-
@@ -1643,7 +1643,7 @@ let INFO =
});
}, // }}}
favorite: function(id) { // {{{
- tw.jsonPost("favorites/create/" + id, null, function(res) {
+ tw.jsonPost("favorites/create", {id: id}, function(res) {
res = Utils.fixStatusObject(res);
Twittperator.echo("fav: " + res.user.name + " " + res.text)
});
--
cgit v1.2.3
From d05b5db5536c47d8ce82951b36b88b1b6f23cf36 Mon Sep 17 00:00:00 2001
From: retlet
Date: Fri, 29 Mar 2013 23:14:33 +0900
Subject: :[tab]open foo/bar がURLとして認識されないように
---
prevent-pseudo-domain.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/prevent-pseudo-domain.js b/prevent-pseudo-domain.js
index 7981874..0e4124c 100644
--- a/prevent-pseudo-domain.js
+++ b/prevent-pseudo-domain.js
@@ -5,7 +5,7 @@
}
function isWord (s) {
- return /^[^\s\.]+$/i.test(s);
+ return /^[^\s\.\/]+$/i.test(s);
}
function isIPAddress (s) {
--
cgit v1.2.3
From 9cad8eb6037eb0fb25594455321c3d713525f5b9 Mon Sep 17 00:00:00 2001
From: Jothiram Selvam
Date: Mon, 1 Apr 2013 15:45:22 +0200
Subject: Added README.md
---
README.md | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 README.md
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..4aedba0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,24 @@
+# Vimperator Plugins
+
+This is a set of plugins that will work with Vimperator
+
+While Vimperator offers already lots of cool features, we cannot and don't want to include every feature directly in the core. Therefore you can enhance the Vimperator experience by adding plugins which add new commands or mappings. Install these plugins by copying them to the ~/.vimperator/plugin/ directory (or %HOME%\vimperator\plugin on Windows) unless noted differently.
+
+Note: This is valid only for versions Firefox 19.* and lower.
+
+### feedSomeKeys_3.js
+
+You can add similar commands to your .vimperatorrc file
+
+:command! -nargs=+ lazy autocmd VimperatorEnter .* <args>
+:lazy fmaps -u='mail\.google\.com/mail' c / j k n p o u e x s r a # [ ] ? gi gs gt gd ga gc
+:lazy fmaps -u='mail\.google\.com/mail/.*/[0-9a-f]+$' c / j,n k,p n,j p,k o u e x s r a # [ ] ? gi gs gt gd ga gc
+:lazy fmaps -u='www\.google\.co\.jp/reader' -events=vkeypress j k n p m s v A r S N P X O gh ga gs gt gu u / ? J K
+:lazy fmaps -u='(fastladder|livedoor)\.com/reader' j k s a p o v c i,p <Space> <S-Space> z b < > q w e,g
+:lazy fmaps -u='https?://www\.rememberthemilk\.com/home/' j k m i c t ? d F,f G,g S,s L,l Y,y H,h M,m <Del> <C-S-Left> <C-S-Right>
+:lazy fmaps -u='http://code.google.com/p/vimperator-labs/issues/list' o j k
+:lazy fmaps -u='http://code.google.com/p/vimperator-labs/issues/detail' u
+
+Note: If you are planning to add them via command line, then remove the "lazy"
+
+
--
cgit v1.2.3
From ec98b5d78df18482cabb59fea1b9b4b98f9ed060 Mon Sep 17 00:00:00 2001
From: Jothiram Selvam
Date: Mon, 1 Apr 2013 15:53:23 +0200
Subject: Updated README
---
README.md | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 4aedba0..73cc3b6 100644
--- a/README.md
+++ b/README.md
@@ -4,12 +4,16 @@ This is a set of plugins that will work with Vimperator
While Vimperator offers already lots of cool features, we cannot and don't want to include every feature directly in the core. Therefore you can enhance the Vimperator experience by adding plugins which add new commands or mappings. Install these plugins by copying them to the ~/.vimperator/plugin/ directory (or %HOME%\vimperator\plugin on Windows) unless noted differently.
-Note: This is valid only for versions Firefox 19.* and lower.
+> ###### Note: Master is valid only for versions Firefox 19.* and lower.
+> ##### For versions Firefox 20.* and higher, please check the branch 3.6 [here](https://github.com/vimpr/vimperator-plugins/tree/3.6)
+## Plugins
### feedSomeKeys_3.js
-You can add similar commands to your .vimperatorrc file
+You can add the following commands to your .vimperatorrc file
+
+```
:command! -nargs=+ lazy autocmd VimperatorEnter .* <args>
:lazy fmaps -u='mail\.google\.com/mail' c / j k n p o u e x s r a # [ ] ? gi gs gt gd ga gc
:lazy fmaps -u='mail\.google\.com/mail/.*/[0-9a-f]+$' c / j,n k,p n,j p,k o u e x s r a # [ ] ? gi gs gt gd ga gc
@@ -18,7 +22,8 @@ You can add similar commands to your .vimperatorrc file
:lazy fmaps -u='https?://www\.rememberthemilk\.com/home/' j k m i c t ? d F,f G,g S,s L,l Y,y H,h M,m <Del> <C-S-Left> <C-S-Right>
:lazy fmaps -u='http://code.google.com/p/vimperator-labs/issues/list' o j k
:lazy fmaps -u='http://code.google.com/p/vimperator-labs/issues/detail' u
+```
-Note: If you are planning to add them via command line, then remove the "lazy"
+> Note: If you are planning to add them via command line, then remove the "lazy"
--
cgit v1.2.3