Open5
ポメラとVS Codeで小説書いてGitで管理
VS Codeの執筆用設定・拡張機能(WIP)
まず虫を非表示にする
メニューバー右クリックで「実行とデバッグ」のチェックを外す。
setting.json
"files.autoSave":"afterDeley",
"editor.wordWrap":"on",
"editor.renderWhitespace":"all",
カスタマイズボタンを追加
入力補助
$ yarn add -D textlint textlint-rule-general-novel-style-ja
.textlintrc
rules:
general-novel-style-ja:
chars_leading_paragraph: " 「『【〈《((“\"‘'[[〔{{<<#―" # 文頭シャープとダッシュを許可
no_punctuation_at_closing_quote: false # カギ括弧前の句読点を許可
max_arabic_numeral_digits: false # アラビア数字の桁数はチェックしない
# 以下デフォ設定
even_number_ellipsises: true # ダッシュは偶数
appropriate_use_of_minus_sign: true # マイナス記号は英数字の前のみ
even_number_dashes: true # 三点リーダは2つ
appropriate_use_of_choonpu: true # 長音符は1つ
space_after_marks: true # 感嘆符の前にスペース
appropriate_use_of_punctuation: true # 句読点は1つ
appropriate_use_of_interpunct: true # 中黒は1つ
- 右下の歯車アイコン→
設定
タブを開く -
設定の検索
フォームでtextlint.run
を検索 - プルダウンから
onSave
を選択
textlint Languages
-
setting.jsonを開く
を選択 -
"markdown"
を追加
除外ファイル設定
.textiintignore
TODOリスト
【応用】台詞をピックアップ
-
todo-tree.general.tags
で検索 -
項目の追加
を選択、「
と入力してOK
を選択 -
setting.json
を開く
setting.json
"todo-tree.highlights.customHighlight": {
"「": {
"foreground": "#ff6666", // 文字色
"icon": "comment" // アイコン
}
},
コミットごとの編集距離を測る(WIP)
Giteaでローカルサーバー立てて小説をバージョン管理(WIP)
保存したらupLaTeXで組版PDFを出力(WIP)