1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-09-17 12:07:08 +03:00
VimR — Neovim GUI for macOS in Swift
Go to file
2022-03-23 18:03:27 +01:00
.github Add vimr-deps download script 2021-12-12 20:39:24 +01:00
bin Update version to 0.38.2 for real this time 2022-03-22 18:03:48 +01:00
Commons Update Xcode 2022-03-16 21:48:10 +01:00
docs Update DEVELOP.md 2021-12-13 18:47:02 +01:00
NvimServer@d6cee78247 Update neovim 2022-02-13 17:05:48 +01:00
NvimView GH-922: Add an option to set font smoothing. 2022-03-23 18:03:27 +01:00
resources Update version to 0.38.2 for real this time 2022-03-22 18:03:48 +01:00
RxPack Update Xcode 2022-03-16 21:48:10 +01:00
Tabs Update Xcode 2022-03-16 21:48:10 +01:00
VimR GH-922: Add an option to set font smoothing. 2022-03-23 18:03:27 +01:00
VimR.xcworkspace Adapt code and scripts for Sparkle v2 2022-03-19 10:20:05 +01:00
Workspace Make use of automatic conversion between CGFloat and Double 2021-12-23 19:48:57 +01: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 using swiftformat 2020-09-18 16:01:55 +02:00
.swiftlint.yml Add Airbnb's swiftlint rules 2021-12-24 09:54:18 +01:00
.travis.yml.bak Disable travis for time being 2019-02-02 18:50:54 +01:00
appcast_snapshot.xml Update appcast 2022-03-22 18:12:08 +01:00
appcast.xml Update appcast 2022-03-22 18:12:08 +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-03-12 20:25:52 +01:00
LICENSE Initial commit with content 2016-06-03 23:43:39 +02:00
README.md Mention 'git submodule' commands required to build 2022-01-03 08:20:18 -08: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

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

Development

See DEVELOP.md.

License

MIT