basyura's blog

あしたになったらほんきだす。

hatena.vim を読む その7

let s:curl_cmd = 'curl -k --silent'
if exists('g:chalice_curl_options') " http://d.hatena.ne.jp/smeghead/20070709/hatenavim
  let s:curl_cmd = s:curl_cmd . ' ' . g:chalice_curl_options
endif
let s:hatena_login_url      = 'https://www.hatena.ne.jp/login'
let s:hatena_base_url       = 'http://d.hatena.ne.jp/'
let s:hatena_group_base_url = 'http://%s.g.hatena.ne.jp/'

let s:curl_cmd = 'curl -k --silent'

curl 実行コマンドを定義

if exists('g:chalice_curl_options') " http://d.hatena.ne.jp/smeghead/20070709/hatenavim

g:chalice_curl_options が存在する場合

let s:curl_cmd = s:curl_cmd . ' ' . g:chalice_curl_options

curl コマンドにオプションを追加

let s:hatena_login_url = 'https://www.hatena.ne.jp/login'

ログイン url 定義

let s:hatena_base_url = 'http://d.hatena.ne.jp/'

はてな url 定義

let s:hatena_group_base_url = 'http://%s.g.hatena.ne.jp/'

はてなグループ url 定義