1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-09-20 21:50:07 +03:00
VimR — Neovim GUI for macOS in Swift
Go to file
2022-12-23 21:09:09 +01:00
.github The nightly release may not be present 2022-06-30 19:55:32 +02:00
bin Use the new notarytool 2022-11-20 11:26:06 +01:00
Commons Reformat 2022-12-15 15:25:24 +09:00
docs Update DEVELOP.md 2021-12-13 18:47:02 +01:00
Ignore Reformat 2022-12-15 15:25:24 +09:00
NvimServer@a273ce84d6 Add RxPack and RxNeovim 2022-12-03 17:43:43 +01:00
NvimView Reformat 2022-12-15 15:25:24 +09:00
resources Update deps 2022-12-23 21:09:09 +01:00
RxPack Reformat 2022-12-15 15:25:24 +09:00
Tabs Update deps 2022-11-03 16:16:36 +01:00
VimR Update deps 2022-12-23 21:09:09 +01:00
VimR.xcworkspace Update deps 2022-12-23 21:09:09 +01:00
Workspace Reformat 2022-12-15 15:25:24 +09:00
.gitattributes Add waiting script for notarization 2019-12-22 21:45:42 +01:00
.gitignore Add a dev target 2019-03-14 09:56:23 +01:00
.gitmodules Add NvimServer as submodule and add a script for local dev 2020-08-18 19:20:40 +02:00
.swiftformat Reformat 2022-12-15 15:25:24 +09:00
.swiftlint.yml Add Airbnb's swiftlint rules 2021-12-24 09:54:18 +01:00
appcast_snapshot.xml Update appcast 2022-11-15 20:04:29 +01:00
appcast.xml Update appcast 2022-11-15 20:04:29 +01:00
Brewfile Add SDKROOT when building libnvim 2020-03-26 22:39:58 +01:00
Cartfile Update deps and release notes 2021-11-30 18:50:13 +01:00
Cartfile.resolved Update version to SNAPSHOT-20211201.192602 2021-12-01 19:27:12 +01:00
DEVELOP.md Update DEVELOP 2022-06-30 21:28:45 +02:00
LICENSE Implement VCS ignoring in Swift and use fzy to fuzzy match 2022-06-16 15:26:39 +02:00
README.md Update README 2022-06-26 19:01:16 +02:00

VimR — Neovim GUI for macOS

DownloadDocumentation

Screenshot 1 Screenshot 2

About

Project VimR is a Neovim GUI for macOS. The goal is to build an editor that uses Neovim inside with many of the convenience GUI features similar to those present in modern editors. We mainly use Swift, but also use C/Objective-C when where appropriate.

There are other Neovim GUIs for macOS, see the list, so why?

  • Play around with Neovim,
  • play around with Swift (and especially with RxSwift), and
  • (most importantly) have fun!

If you want to support VimR financially, use Github's Sponsor.

Download

Pre-built Universal signed and notarized binaries can be found under Releases.

Reusable Components

  • RxMessagePort: RxSwift wrapper for local and remote CFMessagePort.
  • RxMsgpackRpc: Implementation of MsgpackRpc using RxSwift.
  • RxNeovimApi: RxSwift wrapper of Neovim API.
  • NvimView: SwiftPM module which bundles everything, e.g. Neovim's runtime-files, needed to embed Neovim in a Cocoa App.

Some Features

  • Markdown preview
  • Generic HTML preview (retains the scroll position when reloading)
  • Fuzzy file finder a la Xcode's "Open Quickly..."
  • Trackpad support: Pinching for zooming and two-finger scrolling.
  • Ligatures: Turned off by default. Turn it on in the Preferences.
  • Command line tool.
  • (Simple) File browser
  • Flexible workspace model a la JetBrain's IDEs

How to Build

Clone this repository. Install homebrew, then in the project root:

git submodule init
git submodule update

xcode-select --install # install the Xcode command line tools, if you haven't already
brew bundle

clean=true notarize=false use_carthage_cache=false ./bin/build_vimr.sh
# VimR.app will be placed in ./build/Build/Products/Release/

Development

See DEVELOP.md.

License

MIT