Skip to content

Improve magazine tool #225

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Sep 28, 2016
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
975671a
Release Vim binaries for Windows
koron Sep 10, 2016
1170a2a
update NEWS: vimconf 2016 call for speakers
koron Sep 10, 2016
f863745
Release Vim binaries for Windows
koron Sep 13, 2016
3bf015c
MacVim-KaoriYa release announce
crazymaster Sep 13, 2016
14e5f37
add new post
mattn Sep 13, 2016
cc5581c
コメント反映
mattn Sep 13, 2016
abe0675
timer_start の第3引数
mattn Sep 13, 2016
c20370b
defaults.vim
mattn Sep 13, 2016
33198d0
バージョン表記
mattn Sep 13, 2016
cfc09da
2016-09-13
mattn Sep 13, 2016
d0e8707
skip_defaults_vim 削除
mattn Sep 13, 2016
9ec4767
Merge pull request #221 from vim-jp/vim8
mattn Sep 13, 2016
af878f3
Vim 8.0 released!
crazymaster Sep 13, 2016
3fd7ddc
Merge pull request #222 from vim-jp/vim80
mattn Sep 13, 2016
fdd9a28
いったん削除
mattn Sep 13, 2016
f935a61
Vim 8.0 release announce
crazymaster Sep 13, 2016
33544c9
記事の取り換え
crazymaster Sep 13, 2016
48f275c
誘導を追加
crazymaster Sep 13, 2016
704d36e
MacVim-KaoriYa release announce
crazymaster Sep 13, 2016
d2d3a17
redirect
crazymaster Sep 13, 2016
5e1c2cf
Translate
crazymaster Sep 13, 2016
7200076
Merge pull request #223 from vim-jp/announce
mattn Sep 18, 2016
c3b7c18
指摘された箇所を修正
crazymaster Sep 18, 2016
26df080
文言の修正
crazymaster Sep 18, 2016
ec91bff
defer loading scripts
koron Sep 19, 2016
a381b43
delay to setup search box
koron Sep 19, 2016
3a25e9b
make state JSON pretty formatted
koron Sep 27, 2016
45f2077
include patches for 8.0 to patch list sub command
koron Sep 28, 2016
1ccb75e
remove unused properties from magazine's state
koron Sep 28, 2016
040a011
comment
koron Sep 28, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
delay to setup search box
  • Loading branch information
koron committed Sep 19, 2016
commit a381b43b60ec1e8017da69fe31c79724d7013e62
22 changes: 13 additions & 9 deletions assets/javascripts/search-vimdoc-ja.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
(function(google) {
'use strict';

google.load("search", "1", {language : "ja"});
google.setOnLoadCallback(function() {
// search
var customSearchControl = new google.search.CustomSearchControl("001325159752250591701:65aunpq8rlg");
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
var options = new google.search.DrawOptions();
options.enableSearchboxOnly("//www.google.com/cse?cx=001325159752250591701:65aunpq8rlg");
customSearchControl.draw('VimdocJaSearch', options);
}, true);
google.load("search", "1", {
language : "ja",
callback: function() {
google.setOnLoadCallback(function() {
// search
var customSearchControl = new google.search.CustomSearchControl("001325159752250591701:65aunpq8rlg");
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
var options = new google.search.DrawOptions();
options.enableSearchboxOnly("//www.google.com/cse?cx=001325159752250591701:65aunpq8rlg");
customSearchControl.draw('VimdocJaSearch', options);
}, true);
}
});
})(google);