mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
Revamp README.md
The existing MacVim README has been barebones without much useful information for a while now. Revamp it to be more standard and include a screenshot. More may be added later when we add more overall documentation and can be linked from the README. While we are at it, upload light/dark versions of the screenshot to fit the user's preferences.
This commit is contained in:
@@ -1,15 +1,78 @@
|
||||
Vim - the text editor - for macOS
|
||||
<h1 align=center>
|
||||
<img src=https://macvim.org/docs/MacVim.png alt="MacVim logo" style="height:4em"><br>
|
||||
MacVim
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://macvim.org/">Website</a> · <a href="https://macvim.org/docs/gui_mac.txt">Documentation</a>
|
||||
</p>
|
||||
<p align="center">
|
||||
<a href="https://github.com/macvim-dev/macvim/actions/workflows/ci-macvim.yaml?query=branch%3Amaster+event%3Apush"><img src="https://github.com/macvim-dev/macvim/actions/workflows/ci-macvim.yaml/badge.svg" alt="MacVim GitHub CI"></a>
|
||||
<a href="https://github.com/macvim-dev/macvim/releases/latest"><img src="https://img.shields.io/github/v/release/macvim-dev/macvim?label=GitHub%20Release&display=release" alt="GitHub release"></a>
|
||||
<a href="https://repology.org/project/macvim/versions"><img src="https://repology.org/badge/tiny-repos/macvim.svg" alt="Packaging status"></a>
|
||||
</p>
|
||||
|
||||
|
||||
- MacVim homepage: <https://macvim.org>
|
||||
MacVim is a macOS version of the [Vim](https://github.com/vim/vim) text editor, providing a graphical user interface for Vim, while tightly integrating with macOS and providing features specific to the platform.
|
||||
|
||||
- Download the latest version from [Releases](https://github.com/macvim-dev/macvim/releases/latest)
|
||||
<hr>
|
||||
|
||||
- How to [build MacVim from source](https://github.com/macvim-dev/macvim/wiki/Building)
|
||||
<p align="center">
|
||||
<picture>
|
||||
<source srcset="https://macvim.org/images/macvim-screenshot-light.png" media="(prefers-color-scheme: light)"/>
|
||||
<source srcset="https://macvim.org/images/macvim-screenshot-dark.png" media="(prefers-color-scheme: dark)"/>
|
||||
<img width="535" alt="macvim-screenshot-light" src="https://macvim.org/images/macvim-screenshot-light.png" />
|
||||
</picture>
|
||||
</p>
|
||||
|
||||
- Vim README: [README_vim.md](README_vim.md)
|
||||
## Features
|
||||
|
||||
- [](https://github.com/macvim-dev/macvim/actions/workflows/ci-macvim.yaml)
|
||||
- Smooth native GUI that supports menus, dialog boxes, toolbars, and scroll bars.
|
||||
- Native and non-native full-screen modes.
|
||||
- Trackpad gestures, Touch Bar, and Command key shortcuts can be mapped to Vim actions.
|
||||
- Integrates with system services, dictionary lookup, and Apple Intelligence Writing Tools.
|
||||
- Vim GUI tabs with customizable colors.
|
||||
- Font ligatures and accurate text rendering.
|
||||
|
||||
- Packaged in [](https://repology.org/metapackage/macvim/versions) [](https://repology.org/metapackage/macvim/versions)
|
||||
## Getting Started
|
||||
|
||||
See [installation documentation](https://github.com/macvim-dev/macvim/wiki/Installing) for more details and alternative methods to install.
|
||||
|
||||
### Download
|
||||
|
||||
You can download the latest version of MacVim from the [Releases](https://github.com/macvim-dev/macvim/releases/latest) page.
|
||||
|
||||
### Install via Package Manager
|
||||
|
||||
If you would like to install using a package manager, MacVim can be installed via Homebrew:
|
||||
|
||||
```zsh
|
||||
brew install macvim
|
||||
```
|
||||
|
||||
MacVim is also available as a Homebrew cask. It will install the same pre-built binary as the one available from GitHub release:
|
||||
|
||||
```zsh
|
||||
brew install --cask macvim
|
||||
```
|
||||
|
||||
After installation, MacVim can be launched using the Dock or in the terminal using the `mvim` command.
|
||||
|
||||
### Building from Source
|
||||
|
||||
If you prefer to build MacVim from source, detailed instructions are provided in the [Building MacVim](https://github.com/macvim-dev/macvim/wiki/Building) guide.
|
||||
|
||||
## Relationship with Vim
|
||||
|
||||
MacVim is a downstream fork of Vim, and routinely [merges from upstream](https://github.com/macvim-dev/macvim/wiki/Merging-from-upstream-Vim). The original Vim README can be found at [README_vim.md](README_vim.md). Vim itself is also available for macOS, but it does not have a GUI.
|
||||
|
||||
In Homebrew, there are both a `macvim` and `vim` package. Both packages will provide a terminal version of Vim with similar features. The `vim` package is from the upstream Vim project and is usually a bit more up-to-date in core Vim features, while the `macvim` package will provide the additional GUI version bundled as an app.
|
||||
|
||||
## License
|
||||
|
||||
MacVim is released under the [Vim License](https://github.com/macvim-dev/macvim/blob/master/LICENSE).
|
||||
|
||||
## Support
|
||||
|
||||
If you encounter any issues or have questions, feel free to [open an issue](https://github.com/macvim-dev/macvim/issues) or visit the [discussions](https://github.com/macvim-dev/macvim/discussions) page.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user