• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョンe9e25c3a2bb5e74de783787cc292bf06f8940f91 (tree)
日時2022-12-16 05:24:23
作者badcoff33 <none@none>
コミッターbadcoff33

ログメッセージ

file movement

変更サマリ

差分

--- a/after/ftplugin/markdown.vim
+++ b/after/ftplugin/markdown.vim
@@ -25,14 +25,14 @@ nnoremap <buffer> g== o<C-r>="= " .. luaeval(getline(line(".") - 1))<CR>
2525
2626 " Preview in HTML
2727
28-let b:markdown_css_file = stdpath("config") .. "\\CSS\\simple.css"
28+let b:markdown_css_file = stdpath("config") .. "\\templates\\simple.css"
2929 if !filereadable(b:markdown_css_file)
3030 let b:markdown_css_file = ""
3131 else
3232 let b:markdown_css_file = " --css=" .. b:markdown_css_file
3333 endif
3434
35-let b:markdown_template_file = stdpath("config") .. "\\CSS\\template.html"
35+let b:markdown_template_file = stdpath("config") .. "\\templates\\template.html"
3636 if !filereadable(b:markdown_template_file)
3737 let b:markdown_template_file = ""
3838 else
@@ -120,4 +120,3 @@ function! s:ToggleTodo()
120120 normal `'
121121 endif
122122 endfunction
123-
--- a/after/ftplugin/rst.vim
+++ b/after/ftplugin/rst.vim
@@ -23,14 +23,14 @@ iabbrev <buffer> _todo *TODO*
2323 iabbrev <buffer> _link `NAME <>`_<Esc>2bea
2424
2525 " Preview in HTML
26-let b:rst_css_file = stdpath("config") .. "\\CSS\\simple.css"
26+let b:rst_css_file = stdpath("config") .. "\\templates\\simple.css"
2727 if !filereadable(b:rst_css_file)
2828 let b:rst_css_file = ""
2929 else
3030 let b:rst_css_file = " --css=" .. b:rst_css_file
3131 endif
3232
33-let b:rst_template_file = stdpath("config") .. "\\CSS\\template.html"
33+let b:rst_template_file = stdpath("config") .. "\\templates\\template.html"
3434 if !filereadable(b:rst_template_file)
3535 let b:rst_template_file = ""
3636 else
@@ -67,4 +67,3 @@ function! s:MakeHTML(...)
6767 lua RunAsync.start({ command = vim.b.rst_command, all_silent = true })
6868 endif
6969 endfunction
70-