All Projects β†’ tweekmonster β†’ Nmux

tweekmonster / Nmux

Licence: apache-2.0
A multiplexer for Neovim processes

Programming Languages

golang
3204 projects

Labels

Projects that are alternatives of or similar to Nmux

Vim Pink Moon
A vim/neovim colorscheme
Stars: ✭ 89 (-16.82%)
Mutual labels:  neovim
Asyncrun.vim
πŸš€ Run Async Shell Commands in Vim 8.0 / NeoVim and Output to the Quickfix Window !!
Stars: ✭ 1,332 (+1144.86%)
Mutual labels:  neovim
Ncm R
R autocompletion for Neovim and vim 8 πŸ“ πŸ“Š ⚑️
Stars: ✭ 102 (-4.67%)
Mutual labels:  neovim
Autocomplete Swift
Autocompletion for Swift in NeoVim with deoplete.
Stars: ✭ 92 (-14.02%)
Mutual labels:  neovim
Coc Angular
Angular Language Service coc extension for (neo)vim
Stars: ✭ 95 (-11.21%)
Mutual labels:  neovim
Dotfiles
πŸ’» Use command line interface manager for macOS configuration.
Stars: ✭ 97 (-9.35%)
Mutual labels:  neovim
Ctrlsf.vim
An ack.vim alternative mimics Ctrl-Shift-F on Sublime Text 2
Stars: ✭ 1,283 (+1099.07%)
Mutual labels:  neovim
Nvim Toggleterm.lua
A neovim lua plugin to help easily manage multiple terminal windows
Stars: ✭ 102 (-4.67%)
Mutual labels:  neovim
Dotfiles
Alacritty + Tmux + Oh My Zsh + Neovim = ❀️
Stars: ✭ 95 (-11.21%)
Mutual labels:  neovim
Vim Follow My Lead
Vim plugin for showing all your <Leader> mappings in a readable table including the descriptions.
Stars: ✭ 100 (-6.54%)
Mutual labels:  neovim
Sniprun
A neovim plugin to run lines/blocs of code (independently of the rest of the file), supporting multiples languages
Stars: ✭ 93 (-13.08%)
Mutual labels:  neovim
Dotfiles
🀘 My collection of dotfiles for tmux, vim and zsh
Stars: ✭ 94 (-12.15%)
Mutual labels:  neovim
Close Buffers.vim
πŸ“– Quickly close (bdelete) several buffers at once πŸ“•
Stars: ✭ 99 (-7.48%)
Mutual labels:  neovim
Vim Which Key
🌷 Vim plugin that shows keybindings in popup
Stars: ✭ 1,310 (+1124.3%)
Mutual labels:  neovim
Neovim Fuzzy
Fuzzy file finding for neovim
Stars: ✭ 103 (-3.74%)
Mutual labels:  neovim
Vim Rfc
πŸ““ Query RFC database and download RFCs from within Vim.
Stars: ✭ 88 (-17.76%)
Mutual labels:  neovim
Mac Bootstrap
πŸ’» Provision a new Mac for web development with dotfiles + Fish/Zsh, Neovim, and Tmux
Stars: ✭ 96 (-10.28%)
Mutual labels:  neovim
Dotfiles
My dotfiles for Archlinux and Windows
Stars: ✭ 1,419 (+1226.17%)
Mutual labels:  neovim
Denops.vim
🐜 An ecosystem of Vim/Neovim which allows developers to write plugins in Deno
Stars: ✭ 102 (-4.67%)
Mutual labels:  neovim
Vim current word
Plugin highlighting word under cursor and all of its occurences
Stars: ✭ 100 (-6.54%)
Mutual labels:  neovim

nmux

nmux is a multiplexer for Neovim processes. It is very much a work in progress at the moment.

It currently has a built-in HTTP server that renders a single nvim process in your browser using websockets as a proof-of-concept. Short video of nvim rendered in a browser: https://youtu.be/mzfHBPHkT-E

The browser client was made mainly for prototyping. Native GUI clients for Linux, macOS, and Windows are being worked on.

Requirements

Neovim must be installed and nvim available in $PATH.

Install

There is an unstable Darwin (macOS) binary available. Windows and Linux builds will be available in the future.

You can also install it with Go:

$ go get -u github.com/tweekmonster/nmux/cmd/nmux

Usage

To run the server:

$ nmux --server --addr localhost:9999

To use Neovim in a browser, go to http://localhost:9999/

Note: The browser client has been tested and works in Google Chrome. The keyboard currently doesn't work in Firefox or Safari. If you're using an extension that gives you vi functionality, it will need to be disabled.

If you're using the Darwin release:

$ nmux.app/Contents/MacOS/nmux --server --addr localhost:9999

Then run nmux.app to connect to the server. If you're using a port other than 9999, you will need to run the client the same way, but without the --server flag. A future release will allow you to configure a remote server and optionally spawn a local server.

Goals

  • A server that manages multiple nvim processes.
    • Allow clients to connect over TCP.
    • Shared unnamed register between all nvim processes.
  • Native cross-platform client programs.
    • Each nvim instance can be a tab or a split view.
    • UI is always consistent. No platform-specific GUI elements, except for the title bar.
    • Image replacements for glyphs (in-editor icons).
    • Basic OS integration (clipboard, notifications, open URLs, etc.)
  • "Simplified" configuration.
    • Only basics need to be configured for client programs.
      • Client programs can be scripted and configured via vimscript.
    • No need to configure a terminal emulator or tmux. nvim can already be configured and scripted to no end.

The ultimate goal is to create native client apps that connect to the nmux server, making the terminal emulator an obsolete program in my daily work. This is not an attempt to create a new terminal emulatorβ€”nvim already has reliable terminal emulator built-in through libvterm.

This will make it possible to turn a Docker container or Virtual Machine (possibly even WSL) into your "IDE". You could take a snapshot of your workspaces and resume where you left off after a reboot.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].