Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
oddnugget authored Apr 23, 2024
2 parents c6e4fc0 + 95d11bf commit 43a1bbb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 2 additions & 4 deletions doc/smart-splits.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ Table of Contents *smart-splits-table-of-contents*
Install ............................................... |smart-splits-install|
Configuration ................................... |smart-splits-configuration|
Hooks ................................................... |smart-splits-hooks|
Examples ............................................. |smart-splits-examples|
Usage ................................................... |smart-splits-usage|
Key Mappings ..................................... |smart-splits-key-mappings|
Lua API ............................................... |smart-splits-lua-api|
Multiplexer Integrations ............. |smart-splits-multiplexer-integrations|
Tmux ..................................................... |smart-splits-tmux|
Wezterm ............................................... |smart-splits-wezterm|
Kitty ................................................... |smart-splits-kitty|
Credits ............................................... |smart-splits-credits|
Multiplexer Lua API ....................... |smart-splits-multiplexer-lua-api|

==============================================================================
Expand Down Expand Up @@ -178,10 +180,8 @@ The hook table allows you to define callbacks for the `on_enter` and
`on_leave` events of the resize mode.


==============================================================================
EXAMPLES *smart-splits-examples*


Integration with bufresize.nvim
<https://github.com/kwkarlwang/bufresize.nvim>:

Expand Down Expand Up @@ -540,10 +540,8 @@ Or, by adding the following to `~/.config/kitty/kitty.conf`:
listen_on unix:/tmp/mykitty
<

==============================================================================
CREDITS *smart-splits-credits*


Thanks @knubie for inspiration for the Kitty implementation from
vim-kitty-navigator <https://github.com/knubie/vim-kitty-navigator>.

Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lua/smart-splits/api.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local lazy = require('smart-splits.lazy')
local config = lazy.require_on_index('smart-splits.config') --[[@as SmartSplitsConfig]]
local mux = lazy.require_on_exported_call('smart-splits.mux') --[[@as SmartSplitsMultiplexer]]
local mux = lazy.require_on_exported_call('smart-splits.mux') --[[@as SmartSplitsMuxApi]]
local utils = require('smart-splits.utils')
local mux_utils = require('smart-splits.mux.utils')
local types = require('smart-splits.types')
Expand Down
1 change: 1 addition & 0 deletions lua/smart-splits/mux/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ local function move_multiplexer_inner(direction, multiplexer)
return false
end

---@class SmartSplitsMuxApi
local M = {}

---Get the currently configured multiplexer
Expand Down

0 comments on commit 43a1bbb

Please sign in to comment.