1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 02:11:27 +03:00
VimR — Neovim GUI for macOS in Swift
Go to file
S David 6396944b81 Make VimR tab colors match 1:1 with colorscheme.
Additionally: Pick up system accent color properly when no colors set.

NvimView+Resize.swift:
  - Now transmitting Tabline, TablineFill  colors to the VimR
    UI, as well as TablineSel
  - Replace the built-in get() + nvim_get_hl() method because they don't
   have handle 'link' highlights properly (they return -1 for color code)
  - defined a new GetHiColor vimscript method that behaves like get()
       but also reads `link` type highlight groups by following the
       link.

NvimView+Types.swift:
  - visualForegroundColor is picked up from user accent color in System
    Settings using NSColor.Name("controlAccentColor")
  - Updated to include all additional colors

NvimView+UiBridge.swift:
 - Updated MessagePackUtils value code to accomodate new color code fields

Tabs/Tab.swift:
 - Get Selected tab color from TablineSel

Tabs/TabBar.swift:
 - Set tab bar color to TablineFill

Tabs/Theme.swift:
- Add new fields for TablineFill and TablineSel color corresponding to
  tab bar background and selected tab colors
- Minor rearranging of field order

VimR/Theme.swift:
- Add new fields for the tab bar, tab, and selected tab colors
2024-06-10 18:42:09 -04:00
.github Add release notes 2024-05-28 11:51:27 +09:00
bin Adapt API generation script 2024-05-31 22:11:23 +09:00
ci Archive artifacts even if the job is not successful 2024-05-30 11:06:54 +09:00
Commons Update deps 2024-04-26 14:27:46 +02:00
docs Update DEVELOP.md 2021-12-13 18:47:02 +01:00
Ignore Update deps 2024-04-26 14:27:46 +02:00
Neovim@27fb62988e Update neovim to v0.10.0 2024-05-27 22:42:27 +09:00
NvimView Make VimR tab colors match 1:1 with colorscheme. 2024-06-10 18:42:09 -04:00
resources Always use live resizing 2024-05-31 17:11:37 +09:00
RxPack Adapt API generation script 2024-05-31 22:11:23 +09:00
Tabs Make VimR tab colors match 1:1 with colorscheme. 2024-06-10 18:42:09 -04:00
VimR Make VimR tab colors match 1:1 with colorscheme. 2024-06-10 18:42:09 -04:00
VimR.xcworkspace Xcode shenanigans 2024-05-31 22:35:30 +09:00
Workspace Update swift tools version to 5.9 2023-12-17 19:42:17 +01:00
.gitattributes Add waiting script for notarization 2019-12-22 21:45:42 +01:00
.gitignore Add libintl.a into repository for reproducibility 2023-12-11 21:06:47 +01:00
.gitmodules Use stock Neovim repository as submodule 2023-11-13 22:10:43 +01:00
.swiftformat Do not check blocked 2023-12-23 21:13:33 +01:00
.swiftlint.yml Add Airbnb's swiftlint rules 2021-12-24 09:54:18 +01:00
appcast_snapshot.xml Update appcast 2024-05-31 22:25:28 +09:00
appcast.xml Update appcast 2024-05-31 22:25:28 +09:00
Brewfile Remove Carthage 2023-11-24 11:25:36 +01:00
DEVELOP.md Update readme and develop 2024-05-30 11:04:26 +09: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 and develop 2024-05-30 11:04:26 +09:00

VimR — Neovim GUI for macOS

DownloadDocumentation

Screenshot 1 Screenshot 2

About

VimR is a Neovim GUI for macOS written in Swift.

The goal is to build an editor that uses Neovim inside with some of the convenience GUI features similar to those present in modern editors.

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

  • Play around with Neovim,
  • play around with Swift (and especially with RxSwift),
  • Play around with the main idea of Redux architecture, and
  • (most importantly) have fun!

If you feel chatty, there is a chat room: https://matrix.to/#/#vimr:matrix.org

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

  • NvimView: SwiftPM module containing an NSView which bundles everything, e.g., Neovim binary and its runtime-files, needed to embed Neovim in a Cocoa App.
  • RxMsgpackRpc: Implementation of MsgpackRpc using RxSwift.
  • RxNeovimApi: RxSwift wrapper of Neovim API.

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 update --init

xcode-select --install # install the Xcode command line tools, if you haven't already
brew bundle # install dependencies, e.g., build tools for Neovim
clean=true notarize=false ./bin/build_vimr.sh
# VimR.app will be placed in ./build/Build/Products/Release/

Development

See DEVELOP.md.

License

MIT