Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Quickly navigate and resize i3wm windows and Neovim splits with the same keybindings

License

Notifications You must be signed in to change notification settings

tom-anders/easy-i3-neovim-nav.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project is not maintained anymore, please use the Rust version instead!

easy-i3-neovim-nav

Quickly navigate and resize i3wm windows and Neovim splits with the same keybindings

This script is heavily inspired by

Here are the major advantages to the solutions listed above:

Installation

pip install easy-i3-neovim-nav

Usage

Neovim configuration

Add this to your init.vim:

call serverstart(tempname())
let &titlestring="nvim %F -- [" . v:servername . "]"
set title

Note: easy-i3-neovim-nav uses the window's titlestring in order to extract the server name used for communicating with Neovim. The default regex assumes that the servername is contained in square brackets at the very end of your titlestring. To customize this, use the --path-regex option

i3wm configuration

Here's an example configuration for your i3 config. Adapt this to your preferred current keybindings

# Move focus
bindsym $mod+h exec --no-startup-id easy-i3-neovim-nav focus left
bindsym $mod+j exec --no-startup-id easy-i3-neovim-nav focus down
bindsym $mod+k exec --no-startup-id easy-i3-neovim-nav focus up
bindsym $mod+l exec --no-startup-id easy-i3-neovim-nav focus right

# Resizing                                                               
bindsym $mod+Shift+Left  exec --no-startup-id easy-i3-neovim-nav resize shrink width  5 10 5
bindsym $mod+Shift+Down  exec --no-startup-id easy-i3-neovim-nav resize shrink height 5 10 5
bindsym $mod+Shift+Up    exec --no-startup-id easy-i3-neovim-nav resize grow   height 5 10 5
bindsym $mod+Shift+Right exec --no-startup-id easy-i3-neovim-nav resize grow   width  5 10 5

The last three arguments control the amount by which windows are resized:

$ easy_i3_neovim_nav resize -h
usage: easy_i3_neovim_nav.py resize [-h] {shrink,grow} {width,height} amount_vim amount_i3_px amount_i3_ppt

positional arguments:
  {shrink,grow}
  {width,height}
  amount_vim      will be passed as a count to vim's wincmd, see :h wincmd
  amount_i3_px    number of pixels by which to resize a floating window, for details see
                  https://i3wm.org/docs/userguide.html#resizingconfig
  amount_i3_ppt   percentage points by which to resize a tiled window, for details see
                  https://i3wm.org/docs/userguide.html#resizingconfig

optional arguments:
  -h, --help      show this help message and exit

About

Quickly navigate and resize i3wm windows and Neovim splits with the same keybindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages