Skip to content

Commit

Permalink
Fixed 'direrctory' typo in UI. (#1254)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ohkthx authored May 8, 2024
1 parent ae13827 commit e41e840
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/keymap/tool.lua
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ local plug_map = {
["n|<leader>fz"] = map_cu("Telescope zoxide list")
:with_noremap()
:with_silent()
:with_desc("edit: Change current direrctory by zoxide"),
:with_desc("edit: Change current directory by zoxide"),
["n|<leader>fb"] = map_cu("Telescope buffers"):with_noremap():with_silent():with_desc("find: Buffer opened"),
["n|<leader>fs"] = map_cu("Telescope grep_string"):with_noremap():with_silent():with_desc("find: Current word"),
["v|<leader>fs"] = map_callback(function()
Expand Down
2 changes: 1 addition & 1 deletion lua/keymap/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ local plug_map = {
["n|<A-S-i>"] = map_cr("BufferLineMoveNext"):with_noremap():with_silent():with_desc("buffer: Move current to next"),
["n|<A-S-o>"] = map_cr("BufferLineMovePrev"):with_noremap():with_silent():with_desc("buffer: Move current to prev"),
["n|<leader>be"] = map_cr("BufferLineSortByExtension"):with_noremap():with_desc("buffer: Sort by extension"),
["n|<leader>bd"] = map_cr("BufferLineSortByDirectory"):with_noremap():with_desc("buffer: Sort by direrctory"),
["n|<leader>bd"] = map_cr("BufferLineSortByDirectory"):with_noremap():with_desc("buffer: Sort by directory"),
["n|<A-1>"] = map_cr("BufferLineGoToBuffer 1"):with_noremap():with_silent():with_desc("buffer: Goto buffer 1"),
["n|<A-2>"] = map_cr("BufferLineGoToBuffer 2"):with_noremap():with_silent():with_desc("buffer: Goto buffer 2"),
["n|<A-3>"] = map_cr("BufferLineGoToBuffer 3"):with_noremap():with_silent():with_desc("buffer: Goto buffer 3"),
Expand Down

0 comments on commit e41e840

Please sign in to comment.