Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lelit/vbnet-mode
A GNU/Emacs major mode to edit VB.NET
https://github.com/lelit/vbnet-mode
Last synced: 3 days ago
JSON representation
A GNU/Emacs major mode to edit VB.NET
- Host: GitHub
- URL: https://github.com/lelit/vbnet-mode
- Owner: lelit
- Created: 2022-01-18T11:15:33.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-18T11:16:19.000Z (almost 3 years ago)
- Last Synced: 2024-12-20T14:22:32.218Z (23 days ago)
- Language: Emacs Lisp
- Size: 38.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vbnet-mode
A GNU/Emacs major mode to edit [`VB.NET`](https://en.wikipedia.org/wiki/Visual_Basic_.NET) source.
This is taken from [`VbDotNetMode`](https://www.emacswiki.org/emacs/VbDotNetMode) and improved
here and there to fulfill my needs.## Installation
As I do not foresee releasing the package on [`MELPA`](https://melpa.org/), you must install
this manually, copying the `vbnet-mode.el` somewhere in your `load-path` and then activate it:``` emacs-lisp
(autoload 'vbnet-mode "vbnet-mode" "Mode for editing VB.NET code." t)
(add-to-list 'auto-mode-alist '("\\.vb\\'" . vbnet-mode))
```If you use [`Doom Emacs`](https://github.com/hlissner/doom-emacs) then something like the
following should work:``` emacs-lisp
(package! vbnet-mode
:recipe (:host github :repo "lelit/vbnet-mode"))(use-package! vbnet-mode
:mode "\\.vb\\'")
```