Texinfo language support for Visual Studio Code. https://sv.nongnu.org/p/vscode-texinfo
Go to file
CismonX 11b8bde3b1
v0.1.1
2020-11-30 11:56:55 +08:00
assets Add icon. 2020-10-05 04:24:15 +08:00
scripts Prepare for v0.1.0 2020-11-16 03:36:54 +08:00
src v0.1.1 2020-11-30 11:56:55 +08:00
.gitattributes Add icon. 2020-10-05 04:24:15 +08:00
.gitignore Misc update 2020-10-17 21:41:03 +08:00
.travis.yml v0.1.1 2020-11-30 11:56:55 +08:00
.vscodeignore Misc update 2020-10-17 21:41:03 +08:00
CHANGELOG.md v0.1.1 2020-11-30 11:56:55 +08:00
LICENSE initial commit 2020-10-04 02:04:18 +08:00
README.md Update README and dependencies. 2020-11-13 15:22:08 +08:00
language-configuration.json Update configuation. 2020-11-03 05:14:05 +08:00
package-lock.json v0.1.1 2020-11-30 11:56:55 +08:00
package.json v0.1.1 2020-11-30 11:56:55 +08:00
tsconfig.json Update configuation. 2020-11-03 05:14:05 +08:00
webpack.config.ts update 2020-11-04 14:42:31 +08:00

README.md

vscode-texinfo

Build Status MIT License

Texinfo language support for Visual Studio Code.

Features

  • Syntax Highlighting
  • Code Completion
    • Completion and code snippets for most @-commands.
  • Preview
    • Display HTML preview in a webview.
    • Texinfo to HTML conversion is provided by GNU Texinfo.
  • Folding
    • Fold on nodes, block commands and multiline comments.
    • Breadcrumb navigation of folding blocks.
  • Diagnostics
    • Show diagnostic information in editor based on error and warning messages generated by GNU Texinfo.
Screenshots:

Display preview: preview

Code completion: completion

Breadcrumb navigation: navigation

Folding: folding

Diagnostics: diagnostics

Requirements

  • Visual Studio Code version >= 1.40.0. Legacy versions may also work.
  • A latest version of GNU Texinfo.

Extension Settings

See File -> Preferences -> Settings -> Extensions -> Texinfo for details. The settings are self-explanatory.

Notes

  • If syntax highlighting is not satisfactory, try another color theme (e.g. Solarized Light/Dark, Monokai) where keyword/operator colors are distinct.
  • Preview content is updated on document save rather than document change, as Texinfo documents tend to be rather large, and incremental conversion is not yet supported.
  • For macOS users: Preinstalled GNU Texinfo distribution is very old. Use a latest one instead. This can be easily done by brew install texinfo and change extension setting texinfo.makeinfo value.

Future Plans

  • Implement Language Server Protocol for the Texinfo language, preferably by extending GNU Texinfo, to alleviate the limitations of the current implementaion.