]> git.r.bdr.sh - rbdr/oleoboard.nvim/commitdiff
Use leader
authorRuben Beltran del Rio <redacted>
Mon, 1 Jul 2024 21:52:37 +0000 (23:52 +0200)
committerRuben Beltran del Rio <redacted>
Mon, 1 Jul 2024 21:52:37 +0000 (23:52 +0200)
README.md
lua/oleoboard/board.lua
lua/oleoboard/keybinds.lua

index 3f7d5c1b9c2b9f53833cbe2f0ff812f1c59ea0ad..13a051f8891d44f88f75760a8a52802cac58b775 100644 (file)
--- a/README.md
+++ b/README.md
@@ -35,10 +35,10 @@ require('lazy').setup({
 
 ## Default Keybinds
 
-- `bb`, `:OleoBoardToggle`, Opens and Closes the kanban board
-- `bl`, `:OleoBoardMoveEntryRight`, Moves the current entry to the right
-- `bL`, `:OleoBoardMoveColumnRight`, Moves the current column to the right
-- `bh`, `:OleoBoardMoveEntryLeft`, Moves the current entry to the left
-- `bH`, `:OleoBoardMoveColumnLeft`, Moves the current column to the left
+- `<leader>bb`, `:OleoBoardToggle`, Opens and Closes the kanban board
+- `<leader>bl`, `:OleoBoardMoveEntryRight`, Moves the current entry to the right
+- `<leader>bL`, `:OleoBoardMoveColumnRight`, Moves the current column to the right
+- `<leader>bh`, `:OleoBoardMoveEntryLeft`, Moves the current entry to the left
+- `<leader>bH`, `:OleoBoardMoveColumnLeft`, Moves the current column to the left
 
 [oil]: https://github.com/stevearc/oil.nvim
index 11b90db9f83c859d5846c698bb1c86849c311ff2..14735fb5942d717c680eef70833f1b180bd8c939 100644 (file)
@@ -20,7 +20,7 @@ local function get_directories(parent_path)
       local name, type = vim.loop.fs_scandir_next(directory_iterator)
       if not name then break end
       if type == "directory" then
-        table.insert(directories, parent_path .. '/' .. name, 1)
+        table.insert(directories, 1, parent_path .. '/' .. name)
       end
     end
   else
index bbb7c60c76bbe1a2ba6f0cb7d61540f788f59a89..1678035308a647f0b5695d116908be76f341b607 100644 (file)
@@ -10,11 +10,11 @@ local Keybinds = {}
 function Keybinds.bind()
   local api = vim.api
 
-  api.nvim_set_keymap('n', 'bb', '<cmd>OleoBoardToggle<CR>', { noremap = true, silent = true })
-  api.nvim_set_keymap('n', 'bl', '<cmd>OleoBoardMoveEntryRight<CR>', { noremap = true, silent = true })
-  api.nvim_set_keymap('n', 'bh', '<cmd>OleoBoardMoveEntryLeft<CR>', { noremap = true, silent = true })
-  api.nvim_set_keymap('n', 'bL', '<cmd>OleoBoardMoveColumnRight<CR>', { noremap = true, silent = true })
-  api.nvim_set_keymap('n', 'bH', '<cmd>OleoBoardMoveColumnLeft<CR>', { noremap = true, silent = true })
+  api.nvim_set_keymap('n', '<leader>bb', '<cmd>OleoBoardToggle<CR>', { noremap = true, silent = true })
+  api.nvim_set_keymap('n', '<leader>bl', '<cmd>OleoBoardMoveEntryRight<CR>', { noremap = true, silent = true })
+  api.nvim_set_keymap('n', '<leader>bh', '<cmd>OleoBoardMoveEntryLeft<CR>', { noremap = true, silent = true })
+  api.nvim_set_keymap('n', '<leader>bL', '<cmd>OleoBoardMoveColumnRight<CR>', { noremap = true, silent = true })
+  api.nvim_set_keymap('n', '<leader>bH', '<cmd>OleoBoardMoveColumnLeft<CR>', { noremap = true, silent = true })
 end
 
 return Keybinds