Giter Site home page Giter Site logo

autosplit.nvim's Introduction

autosplit.nvim

This plugin adds the user command :Sp[lit] to Neovim. It works the same as Neovim's :sp[lit] and :vs[plit], but can be configured to split automatically, always horizontal or always vertical. The automatic split is based on if the current window is wider than than your preferred minimal window width.

Installation

Use 'yochem/autosplit.nvim' with your package manager.

Configuration

Currently, these are the options you can configure and their defaults:

require('autosplit').setup({
    split = 'auto', -- choose one of 'auto', 'horizontal' and 'vertical'
    min_win_width = 80 -- the minimal width you want for a splitted window
})

Usage

Just replace all your usage of :split with :Split. It has the same signature as :split (see :help :split for more information):

:[N]Sp[lit] [file]

This means that you can open this README.md in a new horizontal split of 5 lines high using :5Sp README.md.

It is of course also possible to remap this to a keybinding, or even better, use :cabbrev if you want to replace :split with this version:

vim.cmd('cabbrev sp Sp')
vim.cmd('cabbrev split Split')

This abbreviation however does not work when using a count (:10sp does not change to :10Sp ).

Heuristic for auto option

The current heuristic for the auto option whether to split vertical or horizontal is based on if the current window can split in two N-column windows, with N being configurable. If you think there is a better heuristic, for example using the ratio between window width and height, let me know!

autosplit.nvim's People

Contributors

yochem avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

0shahad20

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.