Memo by Michikazu Kobayashi
vscode

vscode memo

  • settings.json memorandum

    VSCodeVim (move line end←→line beginning, automatically turn off Japanese conversion in normal mode)
                    "editor.unicodeHighlight.nonBasicASCII": false,
                    "vim.autoSwitchInputMethod.enable": true,
                    "vim.autoSwitchInputMethod.defaultIM": "-c",
                    "vim.autoSwitchInputMethod.obtainIMCmd": "/usr/bin/fcitx-remote",
                    "vim.autoSwitchInputMethod.switchIMCmd": "/usr/bin/fcitx-remote {im}",
                    "vim.whichwrap": "b,s,<,>,[,]"

    Latex Workshop (use lualatex or pdflatex for compiler)

                    "latex-workshop.latex.recipes": [
                      {
                        "name": "lualatex",
                        "tools": ["lualatex"]
                      },
                      {
                        "name": "pdflatex",
                        "tools": ["pdflatex"]
                      }
                    ],
                    "latex-workshop.latex.tools": [
                      {
                        "name": "lualatex",
                        "command": "lualatex",
                        "args": [
                          "-synctex=1",
                          "-interaction=nonstopmode",
                          "-file-line-error",
                          "%DOC%"
                        ]
                      },
                      {
                        "name": "pdflatex",
                        "command": "pdflatex",
                        "args": [
                          "-synctex=1",
                          "-interaction=nonstopmode",
                          "-file-line-error",
                          "%DOC%"
                        ]
                      }
                    ]
    Ctrl + Alt + b to typeset, Ctrl + Alt + p to view PDF, on PDF Ctrl + click to jump to source.

    Bug of Japanese input by vim in v101 is rough

                    "editor.experimentalEditContextEnabled" : false
                  

    Bug that Japanese input by vim is rough in v102

                    "editor.editContext": false
                  
    Come on...